diff options
author | Oliver Lehmann <oliver@FreeBSD.org> | 2007-09-23 17:10:17 +0000 |
---|---|---|
committer | Oliver Lehmann <oliver@FreeBSD.org> | 2007-09-23 17:10:17 +0000 |
commit | ecd6b30dd32ad47e13c8689d66fd8bfb9d2971f9 (patch) | |
tree | d99279ebf21e17be9ffb404de61a7bfcbe289e09 | |
parent | - update to 1.42 (diff) |
fix the removing of the "Samples" SUBDIR from the ports Makefile by using
a propper regexp.
PR: ports/116499
Submitted by: amdmi3@amdmi3.ru
-rw-r--r-- | graphics/cegui/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/cegui/Makefile b/graphics/cegui/Makefile index 6755465650b8..64d2e29fe251 100644 --- a/graphics/cegui/Makefile +++ b/graphics/cegui/Makefile @@ -36,7 +36,7 @@ post-patch: s|-lpthread|${PTHREAD_LIBS}|g; \ s|DevIL_CFLAGS=.*|DevIL_CFLAGS="-DUSE_DEVIL_LIBRARY -I${LOCALBASE}/include"|g' \ ${WRKSRC}/configure - @${REINPLACE_CMD} -e 's| Samples$$||g' ${WRKSRC}/Makefile.in + @${REINPLACE_CMD} -e '/SUBDIRS/ s| Samples||g' ${WRKSRC}/Makefile.in @${REINPLACE_CMD} -e 's|__linux__)|& \|\| defined(__FreeBSD__)|g' \ ${WRKSRC}/include/CEGUIDynamicModule.h \ ${WRKSRC}/src/CEGUIDynamicModule.cpp |