From d34c55c6e16592fb089a764cc27d95fac8c3ab0e Mon Sep 17 00:00:00 2001 From: Ken Raeburn Date: Thu, 3 Jun 1993 18:16:02 +0000 Subject: [PATCH] hack backquoted command in Makefile.in to always have zero exit status --- binutils/ChangeLog | 5 +++++ binutils/Makefile.in | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 7a1879d5eb..65c8e52b58 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -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 diff --git a/binutils/Makefile.in b/binutils/Makefile.in index 3d371925c8..ee325fd411 100644 --- a/binutils/Makefile.in +++ b/binutils/Makefile.in @@ -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; \ -- 2.34.1