svn commit: r408031 - head/sysutils/cdls/files

John Marino marino at FreeBSD.org
Thu Feb 4 14:13:51 UTC 2016


Author: marino
Date: Thu Feb  4 14:13:49 2016
New Revision: 408031
URL: https://svnweb.freebsd.org/changeset/ports/408031

Log:
  sysutils/cdls: Respect ${CC} and ${LDFLAGS}
  
  approved by:	infrastructure blanket

Added:
  head/sysutils/cdls/files/
  head/sysutils/cdls/files/patch-Makefile   (contents, props changed)

Added: head/sysutils/cdls/files/patch-Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/cdls/files/patch-Makefile	Thu Feb  4 14:13:49 2016	(r408031)
@@ -0,0 +1,9 @@
+--- 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:


More information about the svn-ports-all mailing list