summaryrefslogtreecommitdiff
path: root/src/options
diff options
context:
space:
mode:
authorTim King <taking@google.com>2015-10-29 17:42:52 -0700
committerTim King <taking@google.com>2015-10-29 17:42:52 -0700
commitb035877b01e8b8c2ea902d9f3732cf84bfed0fdf (patch)
treef307ffbb1b2f8fd4d5edac2684538f294288b102 /src/options
parentb455f5cde8b84b7951d309604b75a76afd8b8bfa (diff)
Removes an extra dollar sign from src/options/mktagheaders. The extra dollar sign came in as a copy paste from a Makefile. This was not proper bash.
Diffstat (limited to 'src/options')
-rwxr-xr-xsrc/options/mktagheaders2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/options/mktagheaders b/src/options/mktagheaders
index 63a19bc23..5ef3b3172 100755
--- a/src/options/mktagheaders
+++ b/src/options/mktagheaders
@@ -14,7 +14,7 @@ TAG_FILE=$1
echo 'static char const* const '$TAG_FILE'[] = {';
for tag in `cat $TAG_FILE`; do
- echo "\"$$tag\",";
+ echo "\"$tag\",";
done;
echo 'NULL';
echo '};'
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback