summaryrefslogtreecommitdiff
path: root/svgtopng
diff options
context:
space:
mode:
authorGuido Falsi <mad@madpilot.net>2019-01-16 15:20:08 +0100
committerGuido Falsi <mad@madpilot.net>2019-01-16 15:20:08 +0100
commit53e1c4b6b1a1376d529019bf8bd1e4e427da9c23 (patch)
tree14c1604954a8368eddab755a3edec0d986d4fcd2 /svgtopng
parent5e0e6874d07b3c2ee8c730f0ae7288a790bda8c7 (diff)
downloadelementary-xfce-53e1c4b6b1a1376d529019bf8bd1e4e427da9c23.tar.gz
Respect the CC variable, if defined.
On recent FreeBSD versions gcc is not available by default, clang, named cc, being the default system compiler.
Diffstat (limited to 'svgtopng')
-rw-r--r--svgtopng/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/svgtopng/Makefile b/svgtopng/Makefile
index 78521f3d..61a0352a 100644
--- a/svgtopng/Makefile
+++ b/svgtopng/Makefile
@@ -5,7 +5,7 @@ ICONDIR ?= elementary-xfce
all: svgtopng
svgtopng:
- gcc -Wall -Werror -O0 -pipe \
+ ${CC} -Wall -Werror -O0 -pipe \
svgtopng.c -o svgtopng \
`pkg-config --libs --cflags gtk+-3.0` \
`pkg-config --libs --cflags gdk-pixbuf-2.0`