From 4ad20ee45737164058bde0b73ecf4d7f26fcc3f1 Mon Sep 17 00:00:00 2001 From: "wtc%netscape.com" Date: Wed, 27 Sep 2000 05:49:43 +0000 Subject: [PATCH] Use '$(INSTALL) -m 444' to install files in nss/lib/crypto. By default INSTALL is $(NSINSTALL) -R on Unix, which creates relative-path symlinks. --- security/nss/lib/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/security/nss/lib/Makefile b/security/nss/lib/Makefile index f1206779cb80..92aa6ff63257 100644 --- a/security/nss/lib/Makefile +++ b/security/nss/lib/Makefile @@ -80,10 +80,10 @@ 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) -m 444 freebl/sha_fast.c crypto; \ - $(NSINSTALL) -m 444 freebl/sha_fast.h crypto; \ + $(INSTALL) -m 444 freebl/sha_fast.c crypto; \ + $(INSTALL) -m 444 freebl/sha_fast.h crypto; \ fi endif