diff options
author | Bill Nottingham <notting@redhat.com> | 2000-09-12 04:20:48 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2000-09-12 04:20:48 +0000 |
commit | 144b111e088d94ea6f848bcced997c179e916b98 (patch) | |
tree | 80f2220dc87d103e407a7b97d6708c012237bf04 | |
parent | 52192c29b79c6f0d6285faa8adddbc771bc8cc42 (diff) | |
download | initscripts-144b111e088d94ea6f848bcced997c179e916b98.tar initscripts-144b111e088d94ea6f848bcced997c179e916b98.tar.gz initscripts-144b111e088d94ea6f848bcced997c179e916b98.tar.bz2 initscripts-144b111e088d94ea6f848bcced997c179e916b98.tar.xz initscripts-144b111e088d94ea6f848bcced997c179e916b98.zip |
oops, fix build when not installed
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 \ |