blob: e3f3f6a4500f48ba23e6e74f08573c3fb7165bf7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
$NetBSD: patch-aa,v 1.1.1.1 1998/09/04 23:37:23 explorer Exp $
*** Makefile.tmpl~ Tue May 12 04:52:11 1998
--- Makefile.tmpl Tue Jul 21 14:50:58 1998
***************
*** 324,329 ****
--- 324,332 ----
@osdir=`grep '^OSDIR=' $(TOP)/$(SRC)/Makefile.config | sed -e 's:^OSDIR=.*/os:os:'`; \
echo "$(UMASK) 022; $(CP) $(TOP)/$(SRC)/$${osdir}/os.h $(includedir)/"; \
$(UMASK) 022; $(CP) $(TOP)/$(SRC)/$${osdir}/os.h $(root)$(includedir)/
+ # The above umask won't work if the original files were extracted with umask 077.
+ echo 'chmod 444 $(root)$(includedir)/*'
+ chmod 444 $(root)$(includedir)/*
@echo "<=== [include]"
# create an initial document root containing the Apache manual,
|