diff options
author | jgh <jgh@FreeBSD.org> | 2012-12-29 07:11:50 +0800 |
---|---|---|
committer | jgh <jgh@FreeBSD.org> | 2012-12-29 07:11:50 +0800 |
commit | 696ccf12f834c0b4c1930d767989a1fe5dac146d (patch) | |
tree | f126073e0e30982a51f425197091b8c0c7502e97 | |
parent | a0a24dc9f8e2339f6db56c84fa3d6dbae9ed405a (diff) | |
download | freebsd-ports-gnome-696ccf12f834c0b4c1930d767989a1fe5dac146d.tar.gz freebsd-ports-gnome-696ccf12f834c0b4c1930d767989a1fe5dac146d.tar.zst freebsd-ports-gnome-696ccf12f834c0b4c1930d767989a1fe5dac146d.zip |
- restore CFLAGS/LDFLAGS ( won't build without clobbering )
PR: 174726
-rw-r--r-- | audio/pianobar/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/pianobar/Makefile b/audio/pianobar/Makefile index 0375f710f1e3..51f405aa5c77 100644 --- a/audio/pianobar/Makefile +++ b/audio/pianobar/Makefile @@ -26,7 +26,7 @@ PLIST_FILES= bin/pianobar USE_BZIP2= yes USE_GMAKE= yes -CFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib +CFLAGS= -I${LOCALBASE}/include +LDFLAGS= -L${LOCALBASE}/lib .include <bsd.port.mk> |