diff options
author | kevlo <kevlo@FreeBSD.org> | 2012-12-06 14:03:25 +0800 |
---|---|---|
committer | kevlo <kevlo@FreeBSD.org> | 2012-12-06 14:03:25 +0800 |
commit | 8bfad4f84b2441d280deb5d02bfdc32d013cb6d5 (patch) | |
tree | 1d985b8bc88358c43a85e62735bfa620e76f98da /audio | |
parent | d0708ccf68972d9f480d6234f6090ccd23143225 (diff) | |
download | freebsd-ports-gnome-8bfad4f84b2441d280deb5d02bfdc32d013cb6d5.tar.gz freebsd-ports-gnome-8bfad4f84b2441d280deb5d02bfdc32d013cb6d5.tar.zst freebsd-ports-gnome-8bfad4f84b2441d280deb5d02bfdc32d013cb6d5.zip |
Respect CC and CFLAGS.
Maintainer timed out.
Feature safe: yes
PR: ports/174009
Diffstat (limited to 'audio')
-rw-r--r-- | audio/mp3info/files/patch-Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/audio/mp3info/files/patch-Makefile b/audio/mp3info/files/patch-Makefile new file mode 100644 index 000000000000..df8fae691bf5 --- /dev/null +++ b/audio/mp3info/files/patch-Makefile @@ -0,0 +1,12 @@ +--- Makefile.orig 2012-11-30 13:59:48.000000000 +0800 ++++ Makefile 2012-11-30 14:00:09.000000000 +0800 +@@ -44,8 +44,8 @@ + STRIP = strip + + LIBS = -lncurses +-CC = gcc +-CFLAGS = -g -O2 -Wall ++CC ?= cc ++CFLAGS ?= -O -pipe + + all: mp3info gmp3info doc |