summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorGerrit Pape <pape@smarden.org>2003-06-17 13:48:35 +0000
committerGerrit Pape <pape@smarden.org>2003-06-17 13:48:35 +0000
commit2208761ba51953b772d78bb99229abeb5cf2231b (patch)
tree9787eebc26da26fbe0da5bde0a0b657cc12429b4 /Makefile
parentea4074e15836b82ae6e12f0d2c636ab5642f01f0 (diff)
downloadrunit-2208761ba51953b772d78bb99229abeb5cf2231b.tar.gz
runit-2208761ba51953b772d78bb99229abeb5cf2231b.tar.xz
runit-2208761ba51953b772d78bb99229abeb5cf2231b.zip
* runit.c: user select() on systems that don't provide poll() (builds
    on Mac OSX).
  * svlogd.c: reset match flag in lineflush() in all cases.
  * Makefile: build setuidgid in default target.
  * doc/useinit.html: add instruction to create /etc/runit/2 first.
  * doc/install.html: minor.
0.9.5.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index b0e677b..72e079c 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
 DESTDIR=
 
-PACKAGE=runit-0.9.4
+PACKAGE=runit-0.9.5
 DIRS=doc man etc package src
 MANPAGES=runit.8 runit-init.8 runsvdir.8 runsv.8 svwaitdown.8 svwaitup.8 \
 utmpset.8 runsvchdir.8 runsvstat.8 runsvctrl.8 svlogd.8
@@ -16,7 +16,7 @@ all: clean .manpages $(PACKAGE).tar.gz
 	  > doc/$$i.html ; \
 	done ; \
 	echo 'fix up html manually...'
-	echo 'patch -p0 <manpagehtml.diff'
+	echo 'patch -p0 <manpagehtml.diff && exit'
 	sh
 	touch .manpages
 
@@ -26,6 +26,9 @@ $(PACKAGE).tar.gz:
 	make -C src clean
 	cp -a $(DIRS) TEMP/admin/$(PACKAGE)/
 	ln -sf ../etc/debian TEMP/admin/$(PACKAGE)/doc/
+	for i in TEMP/admin/$(PACKAGE)/etc/*; do \
+	  test -d $$i && ln -s ../2 $$i/2; \
+	done
 	chmod -R g-ws TEMP/admin
 	chmod +t TEMP/admin
 	find TEMP -exec touch {} \;