diff options
author | rsc <devnull@localhost> | 2005-01-19 16:45:27 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2005-01-19 16:45:27 +0000 |
commit | 4fc1f5f949d9a8f33b948c3339c798b6bad2270f (patch) | |
tree | e654de55922602dd94f694d201d1b2c75d46f350 /bin/9c | |
parent | 6dfd0c502aaccd9dd98cc1f5ee957d4a68ae73ec (diff) | |
download | plan9port-4fc1f5f949d9a8f33b948c3339c798b6bad2270f.tar.gz plan9port-4fc1f5f949d9a8f33b948c3339c798b6bad2270f.tar.bz2 plan9port-4fc1f5f949d9a8f33b948c3339c798b6bad2270f.zip |
bad $variable names
Diffstat (limited to 'bin/9c')
-rwxr-xr-x | bin/9c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -40,14 +40,14 @@ case "$tag" in u=`uname` v=`uname -r` s=`echo $u$v | tr '. ' '__'` - cflags="$cflags -D__$s__" + cflags="$cflags -D__${s}__" ;; *SunOS*-gcc) usegcc u=`uname` v=`uname -r` s=`echo $u$v | tr '. ' '__'` cflags="$ngflags -g" - cflags="$cflags -D__$s__" + cflags="$cflags -D__${s}__" ;; *) echo 9c does not know how to compile on "$tag" 1>&2 |