diff options
author | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2003-02-02 20:42:22 +0000 |
---|---|---|
committer | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2003-02-02 20:42:22 +0000 |
commit | 19f47f309e0a687ee9fa4231c61e8cbf1225541d (patch) | |
tree | 83083a2b3e4691eb57cc31d8988fcfa26afc607c /audio | |
parent | a8b546f7a0c6fedfce0fcd9f0f9a93641ab062fb (diff) | |
download | freebsd-ports-19f47f309e0a687ee9fa4231c61e8cbf1225541d.zip |
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 36ef768bea4d..d69029c76a92 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: |