fixes
This commit is contained in:
parent
031393529f
commit
20c2bb2b79
|
@ -72,8 +72,8 @@ EOF
|
||||||
fi
|
fi
|
||||||
cat $FDIR/util_comp >> make_macros
|
cat $FDIR/util_comp >> make_macros
|
||||||
else
|
else
|
||||||
case $knowtarget in
|
case $know_target in
|
||||||
1) sed -e "s/^COPTIONS.*\$/COPTIONS=-O -D_EM_WSIZE=$WS -D_EM_PSIZE=$PS/" -e "/cc-and-mkdep.ack/s/^..//" -e "s/^CC=cc/CC=acc -m$ACM" -e "s/^# AR=aal/AR=aal/" -e "s/^# RANLIB=:/RANLIB=:/" < $FDIR/target_comp >> make_macros
|
1) sed -e "s/^COPTIONS.*\$/COPTIONS=-O -D_EM_WSIZE=$WS -D_EM_PSIZE=$PS/" -e "/cc-and-mkdep.ack/s/^..//" -e "s/^CC=cc/CC=acc -m$ACM/" -e "s/^# AR=aal/AR=aal/" -e "s/^# RANLIB=:/RANLIB=:/" < $FDIR/target_comp >> make_macros
|
||||||
;;
|
;;
|
||||||
*) sed "s/^COPTIONS.*\$/COPTIONS=-O -D_EM_WSIZE=$WS -D_EM_PSIZE=$PS/" < $FDIR/target_comp >> make_macros
|
*) sed "s/^COPTIONS.*\$/COPTIONS=-O -D_EM_WSIZE=$WS -D_EM_PSIZE=$PS/" < $FDIR/target_comp >> make_macros
|
||||||
;;
|
;;
|
||||||
|
@ -86,7 +86,7 @@ cat $FDIR/lint_params >> make_macros
|
||||||
echo "A file called 'make_macros' has been created. This file defines some
|
echo "A file called 'make_macros' has been created. This file defines some
|
||||||
'make' variables that parameterize all Makefiles in ACK. You may want
|
'make' variables that parameterize all Makefiles in ACK. You may want
|
||||||
to check it before attempting to actually install ACK."
|
to check it before attempting to actually install ACK."
|
||||||
case $knowtarget in
|
case $know_target in
|
||||||
0) echo "In fact, this installation script does not know much about
|
0) echo "In fact, this installation script does not know much about
|
||||||
your target machine, so expect some things to be wrong"
|
your target machine, so expect some things to be wrong"
|
||||||
;;
|
;;
|
||||||
|
|
|
@ -144,7 +144,7 @@ q
|
||||||
EOF
|
EOF
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ DO_MACHINE_INDEP = n ]
|
if [ $DO_MACHINE_INDEP = n ]
|
||||||
then
|
then
|
||||||
for i in $CONFIG/mach/*/Action
|
for i in $CONFIG/mach/*/Action
|
||||||
do
|
do
|
||||||
|
|
|
@ -17,7 +17,7 @@ cd $CONFIG
|
||||||
for i in mach/*/libsys
|
for i in mach/*/libsys
|
||||||
do
|
do
|
||||||
rm -rf $i
|
rm -rf $i
|
||||||
fi
|
done
|
||||||
|
|
||||||
for i in `cat dir_list`
|
for i in `cat dir_list`
|
||||||
do
|
do
|
||||||
|
|
Loading…
Reference in a new issue