diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2009-06-13 17:15:01 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2009-06-13 17:15:01 +0200 |
commit | d2e5a673aa7637c990ca7307e831327eb67e3fe7 (patch) | |
tree | 70e2d421684317208dc94db354551aca749b3328 /package/openswan/patches/patch-doc_Makefile | |
parent | a8259a651484f6dd5051a20e64f43ae27fc04613 (diff) | |
parent | 6d7a7f4776711758cf5b59028378f01cd8eba493 (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'package/openswan/patches/patch-doc_Makefile')
-rw-r--r-- | package/openswan/patches/patch-doc_Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/package/openswan/patches/patch-doc_Makefile b/package/openswan/patches/patch-doc_Makefile new file mode 100644 index 000000000..d5accab8c --- /dev/null +++ b/package/openswan/patches/patch-doc_Makefile @@ -0,0 +1,11 @@ +--- openswan-2.6.21.orig/doc/Makefile 2009-03-30 15:11:28.000000000 +0200 ++++ openswan-2.6.21/doc/Makefile 2009-06-13 14:35:32.000000000 +0200 +@@ -91,7 +91,7 @@ install: ${alldocs} ${SAMPLEMAN} + do \ + $(INSTALL) $$file ${DOCDIR} || exit 1;\ + done; +- /bin/bash -c 'MANDIR=${MANTREE}; /usr/bin/find ${OPENSWANSRCDIR}/programs ${OPENSWANSRCDIR}/lib ${OPENSWANSRCDIR}/linux -type f -name "*.[1-8]" -print | grep -v lwres | grep -v CVS | while read f; do if [ -f $$f ]; then manNo=$${f##*.}; F=$${f##*/}; /bin/mkdir -p $$MANDIR/man$$manNo; /bin/cp -fp $$f $$MANDIR/man$$manNo/ipsec_$$F; fi; done' ++ bash -c 'MANDIR=${MANTREE}; find ${OPENSWANSRCDIR}/programs ${OPENSWANSRCDIR}/lib ${OPENSWANSRCDIR}/linux -type f -name "*.[1-8]" -print | grep -v lwres | grep -v CVS | while read f; do if [ -f $$f ]; then manNo=$${f##*.}; F=$${f##*/}; mkdir -p $$MANDIR/man$$manNo; cp -fp $$f $$MANDIR/man$$manNo/ipsec_$$F; fi; done' + + install_file_list: + @$(foreach f, $(alldocs), \ |