This commit is contained in:
Roy Marples 2007-08-02 11:09:09 +00:00
parent 9174c25aab
commit 534b4300e7
3 changed files with 7 additions and 5 deletions

View File

@ -1,6 +1,8 @@
# ChangeLog for Gentoo System Intialization ("rc") scripts
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPLv2
* baselayout-2.0.0_rc1 (02 Aug 2007)
01 Aug 2007; Mike Frysinger <vapier@gentoo.org>:
Punt /dev/shm from default /etc/fstab as we handle it and add a helpful
@ -8,7 +10,7 @@
31 Jul 2007; Roy Marples <uberlord@gentoo.org>:
All our binaries are now mulicalls into rc, which makes our on disk size
All our binaries are now multicalls into rc, which makes our on disk size
a lot smaller.
23 Jul 2007; Roy Marples <uberlord@gentoo.org>:

View File

@ -10,7 +10,7 @@
SUBDIRS = conf.d etc init.d man net sh share src
NAME = baselayout
VERSION = 2.0.0_alpha4
VERSION = 2.0.0_rc1
PKG = $(NAME)-$(VERSION)

View File

@ -131,9 +131,9 @@ install: $(TARGET)
install -m 0755 -d $(DESTDIR)/$(LIB)/rcscripts/conf.d
install -m 0644 $(SYS_WHITELIST) $(DESTDIR)/$(LIB)/rcscripts/conf.d
install -m 0755 -d $(DESTDIR)/$(LIB)/rcscripts/bin
for x in $(BINLINKS); do ln -sf $(DESTDIR)/sbin/rc $(DESTDIR)/bin/$$x; done
for x in $(SBINLINKS); do ln -sf $(DESTDIR)/sbin/rc $(DESTDIR)/sbin/$$x; done
for x in $(RCLINKS); do ln -sf $(DESTDIR)/sbin/rc $(DESTDIR)/$(LIB)/rcscripts/bin/$$x; done
for x in $(BINLINKS); do ln -sf ../sbin/rc $(DESTDIR)/bin/$$x; done
for x in $(SBINLINKS); do ln -sf rc $(DESTDIR)/sbin/$$x; done
for x in $(RCLINKS); do ln -sf ../../../sbin/rc $(DESTDIR)/$(LIB)/rcscripts/bin/$$x; done
if test "$(HAVE_PAM)" != "" ; then \
install -m 0755 -d $(DESTDIR)/etc/pam.d ; \
install -m 0644 start-stop-daemon.pam $(DESTDIR)/etc/pam.d/start-stop-daemon ; \