hack backquoted command in Makefile.in to always have zero exit status

This commit is contained in:
Ken Raeburn
1993-06-03 18:16:02 +00:00
parent 3ac620d408
commit d34c55c6e1
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Thu Jun 3 14:05:57 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
* Makefile.in (underscore.c): Hack the backquoted command so it
doesn't cause Solaris make to bomb.
Thu Jun 3 10:40:19 1993 Jeffrey Osier (jeffrey@cygnus.com)
* Makefile.in: added c++filt and objcopy to MANPAGES variable

View File

@ -202,7 +202,7 @@ underscore.c:
echo "int xxy_us_dummy;" >dummy.c
$(CC) -c dummy.c
echo '/*WARNING: This file is automatically generated!*/' >underscore.c
if [ "`$(NM) dummy.o | grep _xxy_us_dummy`" != "" ]; then \
if [ "`$(NM) dummy.o | grep _xxy_us_dummy ; true`" != "" ]; then \
echo "int prepends_underscore = 1;" >>underscore.c; \
else \
echo "int prepends_underscore = 0;" >>underscore.c; \