diff options
author | Dirk Meyer <dinoex@FreeBSD.org> | 2011-06-24 18:18:43 +0000 |
---|---|---|
committer | Dirk Meyer <dinoex@FreeBSD.org> | 2011-06-24 18:18:43 +0000 |
commit | 73440764883a6cfda437fbf2e3224c08bcbdec12 (patch) | |
tree | fba71b3b30fd7770d06cded436196a8842f498e1 /databases | |
parent | eb25071eab97561dc9921962b191622f433303ad (diff) | |
download | ports-73440764883a6cfda437fbf2e3224c08bcbdec12.tar.gz ports-73440764883a6cfda437fbf2e3224c08bcbdec12.zip |
- honor CC,CFLAGS
Notes
Notes:
svn path=/head/; revision=276212
Diffstat (limited to 'databases')
-rw-r--r-- | databases/animenfo-client/files/patch-Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/databases/animenfo-client/files/patch-Makefile b/databases/animenfo-client/files/patch-Makefile new file mode 100644 index 000000000000..f8308b71388a --- /dev/null +++ b/databases/animenfo-client/files/patch-Makefile @@ -0,0 +1,17 @@ +--- Makefile.orig 2002-08-16 07:20:00.000000000 +0200 ++++ Makefile 2011-06-24 20:13:58.000000000 +0200 +@@ -1,10 +1,10 @@ + # Compiler/Linker +-CC = gcc +-LD = gcc ++CC ?= gcc ++LD = ${CC} + + # compiler/linker flags +-CFLAGS = -g -Wall -D_GNU_SOURCE +-LDFLAGS = -g ++CFLAGS += -g -Wall -D_GNU_SOURCE ++LDFLAGS += -g + + # files removal + RM = /bin/rm -f |