summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwtc%netscape.com <devnull@localhost>2000-09-27 05:51:04 +0000
committerwtc%netscape.com <devnull@localhost>2000-09-27 05:51:04 +0000
commita9fc513068bfed44346c725038e08686eeaced38 (patch)
tree7df0984c1cd86b5229920a27eb7bcfed15648cb2
parent8c14129ff925e5cdef276cfe1ce3d4bf2ccbea09 (diff)
downloadnss-hg-a9fc513068bfed44346c725038e08686eeaced38.tar.gz
Use '$(INSTALL) -m 444' to install files in nss/lib/crypto. By default
INSTALL is $(NSINSTALL) -R on Unix, which creates relative-path symlinks.
-rw-r--r--security/nss/lib/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/security/nss/lib/Makefile b/security/nss/lib/Makefile
index 84a761a0e..af84812b9 100644
--- a/security/nss/lib/Makefile
+++ b/security/nss/lib/Makefile
@@ -80,9 +80,9 @@ export::
$(NSINSTALL) -D crypto; \
for file in $(FILES) ; do \
if test -f $$file; then \
- $(NSINSTALL) -m 444 $$file crypto; \
+ $(INSTALL) -m 444 $$file crypto; \
fi; \
done; \
- $(NSINSTALL) -R crypto/nscertinit.c certdb; \
+ $(INSTALL) -m 444 crypto/nscertinit.c certdb; \
fi
endif