aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rwxr-xr-xbin/9c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/9c b/bin/9c
index fcdae6fd..96a9fb45 100755
--- a/bin/9c
+++ b/bin/9c
@@ -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