Skip to content

Commit

Permalink
Small portability fix
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@26618 72102866-910b-0410-8b05-ffd578937521
  • Loading branch information
nicola committed Jun 10, 2008
1 parent 13d211f commit 60ff05b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2008-06-10 Nicola Pero <[email protected]>

* openapp.in: Avoid 'echo -e' which is not portable (Suggestion
from Hubert Chathi <[email protected]>)

2008-05-30 Nicola Pero <[email protected]>

* config.guess, config.sub: Updated to latest version.
Expand Down
6 changes: 3 additions & 3 deletions openapp.in
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 60ff05b

Please sign in to comment.