diff options
author | Roy Marples <roy@marples.name> | 2007-08-02 11:09:09 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2007-08-02 11:09:09 +0000 |
commit | 534b4300e71af305b98fe4eb46983ec4917d9d4c (patch) | |
tree | 9308737ec363d2c455e8a0b53ea317444138d200 | |
parent | 9174c25aab38ce0b943b6b0fbee451e9ae833057 (diff) |
rc1
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | src/Makefile | 6 |
3 files changed, 7 insertions, 5 deletions
@@ -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>: @@ -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) diff --git a/src/Makefile b/src/Makefile index d9304da6..8090fcba 100644 --- a/src/Makefile +++ b/src/Makefile @@ -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 ; \ |