summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--Makefile2
-rw-r--r--src/Makefile6
3 files changed, 7 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 296e0f3..038fba0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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>:
diff --git a/Makefile b/Makefile
index 99e336e..9dd4504 100644
--- a/Makefile
+++ b/Makefile
@@ -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 d9304da..8090fcb 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 ; \