From 5d49535ed95db82dd418f984dad94f9befa330a3 Mon Sep 17 00:00:00 2001 From: Nalin Dahyabhai Date: Tue, 10 Oct 2000 16:03:15 +0000 Subject: fix top-level makefile install target --- Makefile | 4 +++- initscripts.spec | 3 ++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 84edd235..836bb25d 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,6 @@ ROOT=/ +SUPERUSER=root +SUPERGROUP=root VERSION=$(shell awk '/Version:/ { print $$2 }' initscripts.spec) CVSTAG = r$(subst .,-,$(VERSION)) @@ -38,7 +40,7 @@ install: ln -sf ../../../sbin/ifdown . ) (cd src; make install ROOT=$(ROOT) mandir=$(mandir)) mkdir -p $(ROOT)/var/run/netreport - chown root.root $(ROOT)/var/run/netreport + chown $(SUPERUSER).$(SUPERGROUP) $(ROOT)/var/run/netreport chmod og=rwx,o=rx $(ROOT)/var/run/netreport check: diff --git a/initscripts.spec b/initscripts.spec index 050b1ff9..0de5cf78 100644 --- a/initscripts.spec +++ b/initscripts.spec @@ -32,7 +32,7 @@ make %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT/etc -make ROOT=$RPM_BUILD_ROOT mandir=%{_mandir} install +make ROOT=$RPM_BUILD_ROOT SUPERUSER=`id -un` SUPERGROUP=`id -gn` mandir=%{_mandir} install mkdir -p $RPM_BUILD_ROOT/var/run/netreport #chown root.root $RPM_BUILD_ROOT/var/run/netreport chmod u=rwx,g=rwx,o=rx $RPM_BUILD_ROOT/var/run/netreport @@ -231,6 +231,7 @@ rm -rf $RPM_BUILD_ROOT %changelog * Tue Oct 10 2000 Nalin Dahyabhai - handle "gw x.x.x.x" as the last pair of flags in ifup-routes (#18804) +- fix top-level makefile install target * Sun Sep 3 2000 Florian La Roche - /etc/init.d is already provided by chkconfig -- cgit v1.2.1