From: Bodo Möller Date: Sat, 8 Jan 2000 17:45:30 +0000 (+0000) Subject: Use basename instead of complicated sed line. X-Git-Tag: OpenSSL_0_9_5beta1~312 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=7328b0a89db6303aac270f62247ed9ddae6ece77;p=oweals%2Fopenssl.git Use basename instead of complicated sed line. --- diff --git a/Makefile.org b/Makefile.org index 82fae14967..c209bc4cab 100644 --- a/Makefile.org +++ b/Makefile.org @@ -356,14 +356,12 @@ install: all @echo installing man 1 @for i in doc/openssl.pod doc/man/*.pod ; \ do pod2man --section=1 --date=`date +%Y-%m-%d` --center=OpenSSL \ - --release=$(VERSION) $$i > `echo $$i | sed \ - "s#.*/#$(INSTALL_PREFIX)$(INSTALLTOP)/man/man1/#;s/pod/1/"`; \ + --release=$(VERSION) $$i > $(INSTALL_PREFIX)$(INSTALLTOP)/man/man1/`basename $$i .pod`.1; \ done @echo installing man 3 @for i in doc/crypto.pod doc/ssl.pod ; \ do pod2man --section=3 --date=`date +%Y-%m-%d` --center=OpenSSL \ - --release=$(VERSION) $$i > `echo $$i | sed \ - "s#.*/#$(INSTALL_PREFIX)$(INSTALLTOP)/man/man3/#;s/pod/3/"`; \ + --release=$(VERSION) $$i > $(INSTALL_PREFIX)$(INSTALLTOP)/man/man3/`basename $$i .pod`.3; \ done # DO NOT DELETE THIS LINE -- make depend depends on it.