sysutils/cdls: honor CFLAGS

Approved by:	general blanket (FLAGS must be honored)
This commit is contained in:
John Marino 2016-11-19 16:36:54 +00:00
parent cbd5af7d23
commit 179f0e22c3
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=426385

View File

@ -3,7 +3,7 @@
@@ -1,5 +1,5 @@
all:
- cc -O2 -Wall -o cdls cdls.c -lncurses
+ ${CC} -O2 -Wall -o cdls cdls.c ${LDFLAGS} -lncurses
+ ${CC} ${CFLAGS} -o cdls cdls.c ${LDFLAGS} -lncurses
install:
install -o root -g wheel cdls /usr/local/bin/cdls
clean: