diff options
author | jmg <jmg@FreeBSD.org> | 2013-02-27 19:59:58 +0000 |
---|---|---|
committer | jmg <jmg@FreeBSD.org> | 2013-02-27 19:59:58 +0000 |
commit | faaaa0ae86af80852874aca81e87a20f4df574fd (patch) | |
tree | 6b10d4985fc01c20ee6539992f669ba8a4191146 | |
parent | 767ecbeac8f1bbcb2ef28698862a3db0f3be48d9 (diff) | |
download | FreeBSD-src-faaaa0ae86af80852874aca81e87a20f4df574fd.zip FreeBSD-src-faaaa0ae86af80852874aca81e87a20f4df574fd.tar.gz |
fix this script so we don't expand the second $FreeBSD since svn thinks
the $ in $1 ends the keyword, and expands it...
-rwxr-xr-x | tools/test/iconv/tablegen/cmp.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/test/iconv/tablegen/cmp.sh b/tools/test/iconv/tablegen/cmp.sh index 50664c4..349c08f 100755 --- a/tools/test/iconv/tablegen/cmp.sh +++ b/tools/test/iconv/tablegen/cmp.sh @@ -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 |