diff options
author | mi <mi@FreeBSD.org> | 2006-06-27 22:14:17 +0800 |
---|---|---|
committer | mi <mi@FreeBSD.org> | 2006-06-27 22:14:17 +0800 |
commit | 8927eca7598062fa10da1fe2e155c01e6ae96e60 (patch) | |
tree | 8bce14ad39da05a88721f160da5a2b12dbfdff51 | |
parent | 5082aaa4665cd22f795671ccd476dd17312d7a65 (diff) | |
download | freebsd-ports-gnome-8927eca7598062fa10da1fe2e155c01e6ae96e60.tar.gz freebsd-ports-gnome-8927eca7598062fa10da1fe2e155c01e6ae96e60.tar.zst freebsd-ports-gnome-8927eca7598062fa10da1fe2e155c01e6ae96e60.zip |
Change the hardcoded references to tmake to the parametrized by
${LOCALBASE}. Grab the pointy hat.
Pointed out by: Michael Landin Hostbaek, others
-rw-r--r-- | devel/doxygen/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/doxygen/Makefile b/devel/doxygen/Makefile index a6fbbe9465c5..69f3e3739218 100644 --- a/devel/doxygen/Makefile +++ b/devel/doxygen/Makefile @@ -72,8 +72,8 @@ CONFIGURE_ARGS+= --enable-langs no .endif post-configure: - @${REINPLACE_CMD} -e 's|TMAKE *=.*|TMAKE=/opt/bin/tmake|' \ - -e 's|TMAKEPATH *=.*|TMAKEPATH=/opt/share/tmake/freebsd-g++|' \ + @${REINPLACE_CMD} -e 's|TMAKE *=.*|TMAKE=${LOCALBASE}/bin/tmake|' \ + -e 's|TMAKEPATH *=.*|TMAKEPATH=${LOCALBASE}/share/tmake/freebsd-g++|' \ ${WRKSRC}/Makefile ${WRKSRC}/*/Makefile \ ${WRKSRC}/addon/doxywizard/Makefile |