Use '$(INSTALL) -m 444' to install files in nss/lib/crypto. By default

INSTALL is $(NSINSTALL) -R on Unix, which creates relative-path symlinks.
This commit is contained in:
wtc%netscape.com 2000-09-27 05:49:43 +00:00
Родитель 3de56aad0e
Коммит 4ad20ee457
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -80,10 +80,10 @@ export::
$(NSINSTALL) -D crypto; \ $(NSINSTALL) -D crypto; \
for file in $(FILES) ; do \ for file in $(FILES) ; do \
if test -f $$file; then \ if test -f $$file; then \
$(NSINSTALL) -m 444 $$file crypto; \ $(INSTALL) -m 444 $$file crypto; \
fi; \ fi; \
done; \ done; \
$(NSINSTALL) -m 444 freebl/sha_fast.c crypto; \ $(INSTALL) -m 444 freebl/sha_fast.c crypto; \
$(NSINSTALL) -m 444 freebl/sha_fast.h crypto; \ $(INSTALL) -m 444 freebl/sha_fast.h crypto; \
fi fi
endif endif