diff options
author | lioux <lioux@FreeBSD.org> | 2003-02-02 20:42:22 +0000 |
---|---|---|
committer | lioux <lioux@FreeBSD.org> | 2003-02-02 20:42:22 +0000 |
commit | e320470a6e3da9925b3fb250b6bfb4f679d5f164 (patch) | |
tree | 4c99901a1852a92aca933da4da1632fa18f5f859 /audio | |
parent | 0ddd0691eaa28e122aa2672e6dd0179e47d7272c (diff) | |
download | FreeBSD-ports-e320470a6e3da9925b3fb250b6bfb4f679d5f164.zip FreeBSD-ports-e320470a6e3da9925b3fb250b6bfb4f679d5f164.tar.gz |
o Correct regexps after previous switch from PERL to USE_REINPLACE
- CC safe once again
- CFLASS safeness addition
Reported by: Oliver Fromme <olli@lurza.secnetix.de>
Diffstat (limited to 'audio')
-rw-r--r-- | audio/toolame/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/audio/toolame/Makefile b/audio/toolame/Makefile index 36ef768..d69029c 100644 --- a/audio/toolame/Makefile +++ b/audio/toolame/Makefile @@ -44,7 +44,13 @@ post-patch: ${WRKSRC}/Makefile .endif @${REINPLACE_CMD} -E -e \ - 's@^CC\s.+|\$$\((ARCH|DMALLOCLIB|DMAL|OPTIM|WARNING)\)@@g' \ + 's@\$$\((ARCH|DMALLOCLIB|DMAL|OPTIM|WARNING)\)@@g' \ + ${WRKSRC}/Makefile + +post-configure: +# C{C,FLAGS} safeness + @${REINPLACE_CMD} -E -e \ + 's|^(CC[[:space:]]*=).+$$|\1${CC} ${CFLAGS}|' \ ${WRKSRC}/Makefile do-install: |