1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-14 03:10:47 +00:00
freebsd-ports/sysutils/cdls/files/patch-Makefile
John Marino 3e246c83fe sysutils/cdls: Respect ${CC} and ${LDFLAGS}
approved by:	infrastructure blanket
2016-02-04 14:13:49 +00:00

10 lines
241 B
Plaintext

--- Makefile.orig 2012-04-13 16:42:46 UTC
+++ Makefile
@@ -1,5 +1,5 @@
all:
- cc -O2 -Wall -o cdls cdls.c -lncurses
+ ${CC} -O2 -Wall -o cdls cdls.c ${LDFLAGS} -lncurses
install:
install -o root -g wheel cdls /usr/local/bin/cdls
clean: