svn commit: r265759 - stable/8/lib/libmagic

Xin LI delphij at FreeBSD.org
Fri May 9 08:22:03 UTC 2014


Author: delphij
Date: Fri May  9 08:22:02 2014
New Revision: 265759
URL: http://svnweb.freebsd.org/changeset/base/265759

Log:
  MFC r265464:
  
  Sort .ALLSRC before concatenating files together.  This makes sure that the
  file are always built the same.
  
  (Note that Header and Localstuff must appear first and in that order, the
  sorting does not affect as a coincident effect).
  
  Submitted by:	sjg

Modified:
  stable/8/lib/libmagic/Makefile
Directory Properties:
  stable/8/lib/libmagic/   (props changed)

Modified: stable/8/lib/libmagic/Makefile
==============================================================================
--- stable/8/lib/libmagic/Makefile	Fri May  9 08:20:47 2014	(r265758)
+++ stable/8/lib/libmagic/Makefile	Fri May  9 08:22:02 2014	(r265759)
@@ -30,7 +30,7 @@ MAGFILES=	${CONTRDIR}/Header\
 		${CONTRDIR}/Magdir/[a-z]*
 
 magic: ${MAGFILES}
-	cat ${.ALLSRC} > ${.TARGET}
+	cat ${.ALLSRC:O} > ${.TARGET}
 
 magic.mgc: mkmagic magic
 	./mkmagic magic


More information about the svn-src-all mailing list