diff options
author | Niclas Zeising <zeising@FreeBSD.org> | 2013-08-07 23:36:35 +0000 |
---|---|---|
committer | Niclas Zeising <zeising@FreeBSD.org> | 2013-08-07 23:36:35 +0000 |
commit | 9142267090fa352b0de3013b2f0e15c4d685c858 (patch) | |
tree | 51f29332a0e578c6a4d00c7003eff48aa84de6ce /x11 | |
parent | e70aeedb07001c3e53a489674a116aca3a30d7a9 (diff) | |
download | freebsd-ports-9142267090fa352b0de3013b2f0e15c4d685c858.zip |
Don't hardcode the use of gcc.
PR: ports/180384
Submitted by: zeising
Approved by: Maintainer timeout (one month)
Diffstat (limited to 'x11')
-rw-r--r-- | x11/dzen2/files/patch-config.mk | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/x11/dzen2/files/patch-config.mk b/x11/dzen2/files/patch-config.mk new file mode 100644 index 000000000000..88734290dd81 --- /dev/null +++ b/x11/dzen2/files/patch-config.mk @@ -0,0 +1,9 @@ +--- config.mk.orig 2013-07-03 22:32:45.866885213 +0200 ++++ config.mk 2013-07-03 22:32:51.306100406 +0200 +@@ -49,5 +49,5 @@ + #LDFLAGS = -g ${LIBS} + + # compiler and linker +-CC = gcc ++CC ?= cc + LD = ${CC} |