1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-18 03:46:03 +00:00
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

11 lines
195 B
Plaintext

--- 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