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
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to