mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-23 22:33:28 +00:00
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:
parent
3db6853315
commit
c6f9d74a0f
2 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue