summaryrefslogtreecommitdiff
path: root/contrib/reghunt/bin/gcc-svn-ids
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/reghunt/bin/gcc-svn-ids')
-rwxr-xr-xcontrib/reghunt/bin/gcc-svn-ids4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/reghunt/bin/gcc-svn-ids b/contrib/reghunt/bin/gcc-svn-ids
index 98602cc3e63..2953e56da75 100755
--- a/contrib/reghunt/bin/gcc-svn-ids
+++ b/contrib/reghunt/bin/gcc-svn-ids
@@ -63,8 +63,8 @@ fi
ID="$1"
case ${FROM_KIND} in
-index) LINE="`awk -F '|' -v id="${ID}" '{if ($1 == id) print }' < ${LIST}`";;
-rev) LINE="`awk -F '|' -v id="${ID}" '{if ($2 == id) print }' < ${LIST}`";;
+index) LINE=`awk -F '|' -v id="${ID}" '{if ($1 == id) print }' < ${LIST}`;;
+rev) LINE=`awk -F '|' -v id="${ID}" '{if ($2 == id) print }' < ${LIST}`;;
*) errmsg "unrecognized FROM kind: ${FROM_KIND}";
usage;;
esac