diff options
author | Alexey Dokuchaev <danfe@FreeBSD.org> | 2006-10-03 22:54:04 +0000 |
---|---|---|
committer | Alexey Dokuchaev <danfe@FreeBSD.org> | 2006-10-03 22:54:04 +0000 |
commit | 2c7caeb1d25085698ed0e635fd9a9b96e56e48be (patch) | |
tree | 2a6c858f3739226edf16a39c5e6d4d0e6eab0a2a /audio/soundtouch/Makefile | |
parent | Mute the whole target, otherwise comment will show up. (diff) |
- Fix the build with GCC 4.1
- Mute the target so comment does not show up
Diffstat (limited to 'audio/soundtouch/Makefile')
-rw-r--r-- | audio/soundtouch/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/audio/soundtouch/Makefile b/audio/soundtouch/Makefile index 71f7593436b7..59fb8ffb1e53 100644 --- a/audio/soundtouch/Makefile +++ b/audio/soundtouch/Makefile @@ -19,12 +19,14 @@ USE_ZIP= yes WRKSRC= ${WRKDIR}/SoundTouch-${PORTVERSION} -post-patch: - @${REINPLACE_CMD} -e 's|-O3|${CFLAGS}|; s|$$(prefix)/doc|$$(datadir)/doc|' \ +post-patch: .SILENT + ${REINPLACE_CMD} -e 's|-O3|${CFLAGS}|; s|$$(prefix)/doc|$$(datadir)/doc|' \ ${WRKSRC}/source/example/bpm/Makefile.in \ ${WRKSRC}/source/example/SoundStretch/Makefile.in \ ${WRKSRC}/source/SoundTouch/Makefile.in \ ${WRKSRC}/include/Makefile.in ${WRKSRC}/Makefile.in + # Fix for GCC 4.x + ${REINPLACE_CMD} -e 's|SoundTouch::||' ${WRKSRC}/include/SoundTouch.h .if defined(NOPORTDOCS) @${REINPLACE_CMD} -e 's/ install-pkgdocDATA$$//' \ ${WRKSRC}/Makefile.in |