Fixed grep arguments in debugapp so it works with alien grep / os

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@19434 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Nicola Pero 2004-06-01 14:45:46 +00:00
parent 3db6853315
commit c6f9d74a0f
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Tue Jun 1 15:43:45 BST 2004 Riccardo <rollei@tiscalinet.it>
* debugapp.in (appname): Fixed escaping of --args argument to work
with an alien grep / os.
2004-05-17 Richard Frith-Macdonald <rfm@gnu.org>
* Instance/Documentation/autogsdoc.make: Simplify rules. Avoid

View file

@ -216,7 +216,7 @@ else
# Old versions of gdb don't support --args, so we only use it if
# 'gdb --help' lists it.
args=
if (gdb --help | grep -e --args > /dev/null); then
if (gdb --help | grep -e '\-\-args' > /dev/null); then
args="--args"
fi