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 | |
parent | c4af6470a90b1f31eee5791622d073d056174f84 (diff) | |
download | freebsd-ports-gnome-6bccba28ee92facbe608812771c22554cb427e37.tar.gz freebsd-ports-gnome-6bccba28ee92facbe608812771c22554cb427e37.tar.zst freebsd-ports-gnome-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')
-rw-r--r-- | multimedia/audacious-plugins/Makefile | 3 | ||||
-rw-r--r-- | multimedia/audacious/Makefile | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/multimedia/audacious-plugins/Makefile b/multimedia/audacious-plugins/Makefile index 0eec645b7363..3d752c2168e7 100644 --- a/multimedia/audacious-plugins/Makefile +++ b/multimedia/audacious-plugins/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}" diff --git a/multimedia/audacious/Makefile b/multimedia/audacious/Makefile index 0eec645b7363..3d752c2168e7 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}" |