Small portability fix

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@26618 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Nicola Pero 2008-06-10 01:37:27 +00:00
parent 92452e12b2
commit 6050d0f41b
2 changed files with 8 additions and 3 deletions

View file

@ -1,3 +1,8 @@
2008-06-10 Nicola Pero <nicola.pero@meta-innovation.com>
* openapp.in: Avoid 'echo -e' which is not portable (Suggestion
from Hubert Chathi <uhoreg@debian.org>)
2008-05-30 Nicola Pero <nicola.pero@meta-innovation.com>
* config.guess, config.sub: Updated to latest version.

View file

@ -299,15 +299,15 @@ if [ -n "$openapp_debug_mode" ]; then
openapp_corefiles="core*"
for openapp_corefile in $openapp_corefiles; do
if [ -f "$openapp_corefile" ]; then
echo -e "Core image ($openapp_corefile) has been found in working directory. Use it (y/n)? ";
echo "Core image ($openapp_corefile) has been found in working directory. Use it (y/n)? ";
# Need an argument here for Solaris
read REPLY;
if [ $REPLY = y ]; then
echo -e "Using it.";
echo "Using it.";
corearg="--core=$openapp_corefile";
break;
else
echo -e "Ignoring it.";
echo "Ignoring it.";
fi
fi
done