svn commit: r247414 - head/tools/test/iconv/tablegen

John-Mark Gurney jmg at FreeBSD.org
Wed Feb 27 19:59:59 UTC 2013


Author: jmg
Date: Wed Feb 27 19:59:58 2013
New Revision: 247414
URL: http://svnweb.freebsd.org/changeset/base/247414

Log:
  fix this script so we don't expand the second $FreeBSD since svn thinks
  the $ in $1 ends the keyword, and expands it...

Modified:
  head/tools/test/iconv/tablegen/cmp.sh

Modified: head/tools/test/iconv/tablegen/cmp.sh
==============================================================================
--- head/tools/test/iconv/tablegen/cmp.sh	Wed Feb 27 19:59:41 2013	(r247413)
+++ head/tools/test/iconv/tablegen/cmp.sh	Wed Feb 27 19:59:58 2013	(r247414)
@@ -1,4 +1,4 @@
 #!/bin/sh
 # $FreeBSD$
 
-diff -I\$FreeBSD$1 $2 | grep '^-' >/dev/null && printf "\tDIFFER: $1 $2\n" && exit 0 || exit 0
+diff -I\$\FreeBSD $1 $2 | grep '^-' >/dev/null && printf "\tDIFFER: $1 $2\n" && exit 0 || exit 0


More information about the svn-src-all mailing list