summaryrefslogtreecommitdiff
path: root/Makefile.org
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2005-06-19 20:31:15 +0000
committerRichard Levitte <levitte@openssl.org>2005-06-19 20:31:15 +0000
commitf6098f2ddad2dae93b6a6dea6a92547afdc19cfb (patch)
tree2a593eaec190f9ec891d41add546e658ab255531 /Makefile.org
parent857c6092b69102dab139935519e2a006ff8e8fb2 (diff)
downloadopenssl-new-f6098f2ddad2dae93b6a6dea6a92547afdc19cfb.tar.gz
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 35c7700d1e..81dc1bbdc9 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); \