diff options
author | 2006-10-11 18:35:18 +0000 | |
---|---|---|
committer | 2006-10-11 18:35:18 +0000 | |
commit | b65301ec9e19a57a05bc17073cac8d537383381d (patch) | |
tree | 8946eb67f19f23583c7fc93b65f61b99377a4a1c /vzctl | |
parent | libvzctl is missing a SO-name. (diff) | |
download | misc-b65301ec9e19a57a05bc17073cac8d537383381d.tar.gz misc-b65301ec9e19a57a05bc17073cac8d537383381d.tar.bz2 misc-b65301ec9e19a57a05bc17073cac8d537383381d.zip |
Fixing the gentoo-install target; its missing /etc as target of the symlink.
svn path=/; revision=502
Diffstat (limited to 'vzctl')
-rw-r--r-- | vzctl/patches/3.0.12/000_README | 4 | ||||
-rw-r--r-- | vzctl/patches/3.0.12/010_all_Makefile-gentoo-install.patch | 13 |
2 files changed, 17 insertions, 0 deletions
diff --git a/vzctl/patches/3.0.12/000_README b/vzctl/patches/3.0.12/000_README index ba443ce..75dda6b 100644 --- a/vzctl/patches/3.0.12/000_README +++ b/vzctl/patches/3.0.12/000_README @@ -13,6 +13,10 @@ Patch: 005_all_libvzctl-soname.patch From: Christian Heim based upon Dmitry's library rework patch Desc: Adding a soname to /usr/$(get_libdir)/libvzctl.so.0.0.2 +Patch: 010_all_Makefile-gentoo-install.patch +From: Christian Heim <phreak@gentoo.org> +Desc: The gentoo-install target is missing /etc + Patch: 210_all_vzctl.8.patch From: Igor Sukhih <igor@openvz.org> Desc: Added --name description to vzctl.8. diff --git a/vzctl/patches/3.0.12/010_all_Makefile-gentoo-install.patch b/vzctl/patches/3.0.12/010_all_Makefile-gentoo-install.patch new file mode 100644 index 0000000..6862f17 --- /dev/null +++ b/vzctl/patches/3.0.12/010_all_Makefile-gentoo-install.patch @@ -0,0 +1,13 @@ +Index: vzctl-3.0.12/src/Makefile +=================================================================== +--- vzctl-3.0.12.orig/src/Makefile ++++ vzctl-3.0.12/src/Makefile +@@ -224,7 +224,7 @@ install-redhat: inst-netscripts inst-ini + + install-gentoo: + $(INSTALL) -m 755 ../etc/init.d/vz-gentoo $(DESTDIR)/$(INITDDIR)/vz +- ln -s $(DESTDIR)/$(CONFDIR)/vz.conf $(DESTDIR)/conf.d/vz ++ ln -s $(DESTDIR)/$(CONFDIR)/vz.conf $(DESTDIR)/etc/conf.d/vz + + clean: + rm -f *.o lib/*.lo $(PROGS) $(LIB_vzctl) $(LIB_fs) $(LIB_fs) .depend |