mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-24 11:41:58 +00:00
bad $variable names
This commit is contained in:
parent
6dfd0c502a
commit
4fc1f5f949
1 changed files with 2 additions and 2 deletions
4
bin/9c
4
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
|
||||
|
|
Loading…
Reference in a new issue