summaryrefslogtreecommitdiffstats
path: root/Makefile.org
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2005-06-19 20:31:32 +0000
committerRichard Levitte <levitte@openssl.org>2005-06-19 20:31:32 +0000
commita4ae746656d658da4a697d9c10d996c761109f18 (patch)
tree0dbfd88bd0c52d276fc67133530c4325f1b78c6d /Makefile.org
parent331a0a7b9bbf2d04f02fe8ab09c7136f727e7354 (diff)
With DJGPP, it seems like the return code from grep, even when in the
middle of a pipe, is noted. Counter that by forcing a true return code when the return code has no importance. PR: 1085
Diffstat (limited to 'Makefile.org')
-rw-r--r--Makefile.org8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.org b/Makefile.org
index 0a284c6545..4acc2a4f1a 100644
--- a/Makefile.org
+++ b/Makefile.org
@@ -522,8 +522,8 @@ install_docs:
--release=$(VERSION) `basename $$i`") \
> $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
$(PERL) util/extract-names.pl < $$i | \
- grep -v $$filecase "^$$fn\$$" | \
- grep -v "[ ]" | \
+ (grep -v $$filecase "^$$fn\$$"; true) | \
+ (grep -v "[ ]"; true) | \
(cd $(INSTALL_PREFIX)$(MANDIR)/man$$sec/; \
while read n; do \
$$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) "$$n".$${sec}$(MANSUFFIX); \
@@ -539,8 +539,8 @@ install_docs:
--release=$(VERSION) `basename $$i`") \
> $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
$(PERL) util/extract-names.pl < $$i | \
- grep -v $$filecase "^$$fn\$$" | \
- grep -v "[ ]" | \
+ (grep -v $$filecase "^$$fn\$$"; true) | \
+ (grep -v "[ ]"; true) | \
(cd $(INSTALL_PREFIX)$(MANDIR)/man$$sec/; \
while read n; do \
$$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) "$$n".$${sec}$(MANSUFFIX); \