svn commit: r275234 - head/usr.bin/vi/catalog

Garrett Cooper ngie at FreeBSD.org
Sat Nov 29 06:53:07 UTC 2014


Author: ngie
Date: Sat Nov 29 06:53:06 2014
New Revision: 275234
URL: https://svnweb.freebsd.org/changeset/base/275234

Log:
  MF projects/building-blocks r275198:
  
    Use ${.TARGET} instead of hardcoding the name in the dump build rule

Modified:
  head/usr.bin/vi/catalog/Makefile
Directory Properties:
  head/   (props changed)

Modified: head/usr.bin/vi/catalog/Makefile
==============================================================================
--- head/usr.bin/vi/catalog/Makefile	Sat Nov 29 05:28:40 2014	(r275233)
+++ head/usr.bin/vi/catalog/Makefile	Sat Nov 29 06:53:06 2014	(r275234)
@@ -101,7 +101,7 @@ english.base: dump ${SCAN} #Makefile
 
 
 dump: dump.c
-	${CC} -o dump ${.ALLSRC}
+	${CC} -o ${.TARGET} ${.ALLSRC}
 
 CLEANFILES+= dump ${CAT} english.base *.check __ck1 __ck2
 


More information about the svn-src-all mailing list