aboutsummaryrefslogtreecommitdiffstats
path: root/engines
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-12-15 05:59:13 +0000
committerRichard Levitte <levitte@openssl.org>2002-12-15 05:59:13 +0000
commit30c08f2e3d7f7dca254d8341cdecc7ad37a9f62a (patch)
tree754dd66390b2ace7cadd1b27c7aaa62d8a93a997 /engines
parent9f100cf3441a56bdb4404bf5cc9747085e2c53a0 (diff)
downloadopenssl-30c08f2e3d7f7dca254d8341cdecc7ad37a9f62a.tar.gz
Update the make system for installations:
- define a HERE variable to indicate where the source tree is (used very little right now) - make more use of copying and making attribute changes to {file}.new, and then move it to {file} - use 'mv -f' to avoid all those questions to the user when the file in question doesn't have write attributes for that user.
Diffstat (limited to 'engines')
-rw-r--r--engines/Makefile.ssl2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/Makefile.ssl b/engines/Makefile.ssl
index fe0690622e..010d74b763 100644
--- a/engines/Makefile.ssl
+++ b/engines/Makefile.ssl
@@ -95,7 +95,7 @@ install:
( echo installing $$l; \
cp lib$$l.so $(INSTALL_PREFIX)$(OPENSSLDIR)/engines/lib$$l.so.new; \
chmod 555 $(INSTALL_PREFIX)$(OPENSSLDIR)/engines/lib$$l.so.new; \
- mv $(INSTALL_PREFIX)$(OPENSSLDIR)/engines/lib$$l.so.new $(INSTALL_PREFIX)$(OPENSSLDIR)/engines/lib$$l.so ); \
+ mv -f $(INSTALL_PREFIX)$(OPENSSLDIR)/engines/lib$$l.so.new $(INSTALL_PREFIX)$(OPENSSLDIR)/engines/lib$$l.so ); \
done; \
fi