- Use ${CC} instead of CC, ${CC} was intented here

- Do not unconditionally strip binary

PR:		200523
This commit is contained in:
Antoine Brodin 2015-05-29 21:31:06 +00:00
parent e233284ece
commit 4401a143ac
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=387892
2 changed files with 11 additions and 0 deletions

View File

@ -3,6 +3,7 @@
PORTNAME= felis
PORTVERSION= 1.0
PORTREVISION= 1
CATEGORIES= misc
MASTER_SITES= http://www.whizkidtech.redprince.net/fports/

View File

@ -0,0 +1,10 @@
--- 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