diff options
author | Alan Eldridge <alane@FreeBSD.org> | 2002-07-06 03:08:45 +0000 |
---|---|---|
committer | Alan Eldridge <alane@FreeBSD.org> | 2002-07-06 03:08:45 +0000 |
commit | 3e409ec4ae1ebec82b91b0425ec3ab40af5924cb (patch) | |
tree | d885646f9ccd5e0fe3cbaaa24fa1fcbb56d6ff66 /misc/kdeaddons3 | |
parent | Emergency patch: kdeaddons3 will not build without this, as the (diff) |
Apologies to all. The last patch was botched and I thought I had
killed the commit. Fix SDL_CONFIG the right way. We don't need that
post-configure: target, ANAICT.
Notes
Notes:
svn path=/head/; revision=62502
Diffstat (limited to 'misc/kdeaddons3')
-rw-r--r-- | misc/kdeaddons3/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/misc/kdeaddons3/Makefile b/misc/kdeaddons3/Makefile index 3393c7e2e8f2..a363b974343b 100644 --- a/misc/kdeaddons3/Makefile +++ b/misc/kdeaddons3/Makefile @@ -25,14 +25,14 @@ USE_BZIP2= yes GNU_CONFIGURE= yes USE_GMAKE= yes PLIST_SUB+= RM=${RM} -SDL_CONFIG= ${LOCALBASE}/bin/sdl11-config -CONFIGURE_ENV+= SDL_CONFIG="${SDL_CONFIG}" +SDL_CONFIG= sdl11-config +CONFIGURE_ENV+= SDL_CONFIG="${LOCALBASE}/bin/${SDL_CONFIG}" .include "${.CURDIR}/../../x11/kde3/Makefile.kde" -post-configure: - ${FIND} ${WRKSRC} -type f | ${XARGS} ${PERL} -pi -e \ - "s@sdl-config@${SDL_CONFIG}@g" +#post-configure: +# ${FIND} ${WRKSRC} -type f | ${XARGS} ${PERL} -pi -e \ +# "s@sdl-config@${SDL_CONFIG}@g" .include <bsd.port.pre.mk> |