summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2000-09-12 04:20:48 +0000
committerBill Nottingham <notting@redhat.com>2000-09-12 04:20:48 +0000
commit144b111e088d94ea6f848bcced997c179e916b98 (patch)
tree80f2220dc87d103e407a7b97d6708c012237bf04
parent52192c29b79c6f0d6285faa8adddbc771bc8cc42 (diff)
downloadinitscripts-144b111e088d94ea6f848bcced997c179e916b98.tar.gz
initscripts-144b111e088d94ea6f848bcced997c179e916b98.tar.xz
initscripts-144b111e088d94ea6f848bcced997c179e916b98.zip
oops, fix build when not installed
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 2a6fa419..84edd235 100644
--- a/Makefile
+++ b/Makefile
@@ -37,9 +37,9 @@ install:
ln -sf ../../../sbin/ifup . ; \
ln -sf ../../../sbin/ifdown . )
(cd src; make install ROOT=$(ROOT) mandir=$(mandir))
- mkdir -p /var/run/netreport
- chown root.root /var/run/netreport
- chmod og=rwx,o=rx /var/run/netreport
+ mkdir -p $(ROOT)/var/run/netreport
+ chown root.root $(ROOT)/var/run/netreport
+ chmod og=rwx,o=rx $(ROOT)/var/run/netreport
check:
for afile in `find . -type f -perm +111|grep -v \.csh ` ; do \