diff options
author | Zac Medico <zmedico@gentoo.org> | 2009-10-12 20:03:49 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2009-10-12 20:03:49 +0000 |
commit | 52d3bd7f09e2d11535d7eb816d611f2cd8d4f50e (patch) | |
tree | a5cbaf6083e21e5c9b46395d205d32ed923d558a /sys-process/minit | |
parent | KDE 3.5.9 removal (diff) | |
download | gentoo-2-52d3bd7f09e2d11535d7eb816d611f2cd8d4f50e.tar.gz gentoo-2-52d3bd7f09e2d11535d7eb816d611f2cd8d4f50e.tar.bz2 gentoo-2-52d3bd7f09e2d11535d7eb816d611f2cd8d4f50e.zip |
Add missing patch that's still referenced inside the minit-0.9.1.ebuild and the Manifest.
(Portage version: 2.2_rc46/cvs/Linux i686)
Diffstat (limited to 'sys-process/minit')
-rw-r--r-- | sys-process/minit/files/0.9.1-destdir.patch | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/sys-process/minit/files/0.9.1-destdir.patch b/sys-process/minit/files/0.9.1-destdir.patch new file mode 100644 index 000000000000..7a36d3cdfde7 --- /dev/null +++ b/sys-process/minit/files/0.9.1-destdir.patch @@ -0,0 +1,16 @@ +--- Makefile.orig 2004-03-04 03:08:18.967017104 -0500 ++++ Makefile 2004-03-04 03:10:11.445917712 -0500 +@@ -36,10 +36,12 @@ + $(DIET) $(CROSS)$(CC) $(CFLAGS) -o $@ $^ + + install-files: ++ test -d $(DESTDIR)/sbin || mkdir -p $(DESTDIR)/sbin + install minit pidfilehack $(DESTDIR)/sbin + install write_proc hard-reboot $(DESTDIR)/sbin ++ test -d $(DESTDIR)/bin || mkdir -p $(DESTDIR)/bin + install msvc $(DESTDIR)/bin +- test -d $(DESTDIR)/etc/minit || mkdir $(DESTDIR)/etc/minit ++ test -d $(DESTDIR)/etc/minit || mkdir -p $(DESTDIR)/etc/minit + + install-fifos: + -mkfifo -m 600 $(DESTDIR)/etc/minit/in $(DESTDIR)/etc/minit/out |