freebsd-ports/misc/felis/files/patch-Makefile
Antoine Brodin 4401a143ac - Use ${CC} instead of CC, ${CC} was intented here
- Do not unconditionally strip binary

PR:		200523
2015-05-29 21:31:06 +00:00

10 lines
195 B
Text

--- Makefile.orig 2000-05-13 16:12:00 UTC
+++ Makefile
@@ -13,6 +13,5 @@ CC = gcc
all: felis
felis: felis.c
- CC ${CFLAGS} felis.c -o felis
- strip felis
+ ${CC} ${CFLAGS} felis.c -o felis