diff options
author | Tilman Keskinoz <arved@FreeBSD.org> | 2003-02-11 22:06:54 +0000 |
---|---|---|
committer | Tilman Keskinoz <arved@FreeBSD.org> | 2003-02-11 22:06:54 +0000 |
commit | ad3b3471558d93f15aa2fa7a15a669943fdbd4db (patch) | |
tree | 5b69791fe82cf0b8b651df37fdefc73ba5ca821c /audio/ladspa | |
parent | Upgrade to 0.46. (diff) |
Respect CFLAGS
Diffstat (limited to 'audio/ladspa')
-rw-r--r-- | audio/ladspa/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/ladspa/Makefile b/audio/ladspa/Makefile index 60cacd281766..1c1e91fe1661 100644 --- a/audio/ladspa/Makefile +++ b/audio/ladspa/Makefile @@ -21,10 +21,10 @@ PLUGIN_FILES= amp.so delay.so filter.so noise.so sine.so PLUGIN_DIR?= ${PREFIX}/lib/ladspa/ post-patch: - ${REINPLACE_CMD} -e 's,-ldl,,' ${WRKSRC}/src/makefile + ${REINPLACE_CMD} -e 's,-ldl,,; s,^CFLAGS[ \t]=,#CFLAGS+=,' ${WRKSRC}/src/makefile do-build: - cd ${WRKSRC}/src; ${GMAKE} -f makefile targets + cd ${WRKSRC}/src; ${SETENV} ${MAKE_ENV} ${GMAKE} -f makefile targets do-install: @${INSTALL_DATA} ${WRKSRC}/src/ladspa.h ${PREFIX}/include |