diff options
author | lawrance <lawrance@FreeBSD.org> | 2006-10-20 15:31:33 +0800 |
---|---|---|
committer | lawrance <lawrance@FreeBSD.org> | 2006-10-20 15:31:33 +0800 |
commit | 6bccba28ee92facbe608812771c22554cb427e37 (patch) | |
tree | 60148334ad9b736c65470b2406afe24d3496695b /multimedia/audacious | |
parent | c4af6470a90b1f31eee5791622d073d056174f84 (diff) | |
download | freebsd-ports-graphics-6bccba28ee92facbe608812771c22554cb427e37.tar.gz freebsd-ports-graphics-6bccba28ee92facbe608812771c22554cb427e37.tar.zst freebsd-ports-graphics-6bccba28ee92facbe608812771c22554cb427e37.zip |
Fix build for users trying to upgrade audacious, by removing CPPFLAGS
assignment from the port Makefile. It was causing header conflicts
between the previously installed version and the port build.
PR: ports/104101
Submitted by: Roland Smith <rsmith@xs4all.nl>
Approved by: portmgr (erdwin)
Diffstat (limited to 'multimedia/audacious')
-rw-r--r-- | multimedia/audacious/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/multimedia/audacious/Makefile b/multimedia/audacious/Makefile index 0eec645b736..3d752c2168e 100644 --- a/multimedia/audacious/Makefile +++ b/multimedia/audacious/Makefile @@ -27,8 +27,7 @@ USE_X_PREFIX= yes GNU_CONFIGURE= yes USE_GMAKE= yes USE_LDCONFIG= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib -lstdc++" \ +CONFIGURE_ENV= LDFLAGS="-L${LOCALBASE}/lib -lstdc++" \ INPUT_PLUGINS="${INPUT_PLUGINS}" \ OUTPUT_PLUGINS="${OUTPUT_PLUGINS}" \ VISUALIZATION_PLUGINS="${VISUALIZATION_PLUGINS}" |