Delete library install from Makefile.fips: it isn't used.

Revert change to Makefile.org: it breaks install.
This commit is contained in:
Dr. Stephen Henson 2011-08-15 20:38:16 +00:00
parent 7cbab63f5a
commit 142625b534
2 changed files with 1 additions and 12 deletions

View File

@ -634,16 +634,5 @@ install_sw:
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
done; done;
@set -e; target=install; $(RECURSIVE_BUILD_CMD) @set -e; target=install; $(RECURSIVE_BUILD_CMD)
@set -e; for i in "$(LIBS)" ;\
do \
if [ -f "$$i" ]; then \
( echo installing $$i; \
cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
$(RANLIB) $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i ); \
fi; \
done;
# DO NOT DELETE THIS LINE -- make depend depends on it. # DO NOT DELETE THIS LINE -- make depend depends on it.

View File

@ -645,7 +645,7 @@ install_sw:
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
done; done;
@set -e; target=install; $(RECURSIVE_BUILD_CMD) @set -e; target=install; $(RECURSIVE_BUILD_CMD)
@set -e; for i in "$(LIBS)" ;\ @set -e; for i in $(LIBS) ;\
do \ do \
if [ -f "$$i" ]; then \ if [ -f "$$i" ]; then \
( echo installing $$i; \ ( echo installing $$i; \