diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2005-12-16 11:50:55 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2005-12-16 11:50:55 +0000 |
commit | d44edb114ff2fd359a1ab7f76d53c75636646337 (patch) | |
tree | 6ade0cf7a0d4f97bf475002ab0957d26b696761a /x11-themes/windowmaker-themes/windowmaker-themes-0.1.ebuild | |
parent | Remove GNUish cp -a call. Bug #103487. (diff) | |
download | gentoo-2-d44edb114ff2fd359a1ab7f76d53c75636646337.tar.gz gentoo-2-d44edb114ff2fd359a1ab7f76d53c75636646337.tar.bz2 gentoo-2-d44edb114ff2fd359a1ab7f76d53c75636646337.zip |
Remove GNUish cp -d call. Bug #103487.
(Portage version: 2.0.53)
Diffstat (limited to 'x11-themes/windowmaker-themes/windowmaker-themes-0.1.ebuild')
-rw-r--r-- | x11-themes/windowmaker-themes/windowmaker-themes-0.1.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/x11-themes/windowmaker-themes/windowmaker-themes-0.1.ebuild b/x11-themes/windowmaker-themes/windowmaker-themes-0.1.ebuild index 3c3ae544d44a..3147610ab032 100644 --- a/x11-themes/windowmaker-themes/windowmaker-themes-0.1.ebuild +++ b/x11-themes/windowmaker-themes/windowmaker-themes-0.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-themes/windowmaker-themes/windowmaker-themes-0.1.ebuild,v 1.11 2005/07/11 17:14:32 blubb Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-themes/windowmaker-themes/windowmaker-themes-0.1.ebuild,v 1.12 2005/12/16 11:48:29 flameeyes Exp $ # TODO: Break themes up by author and into sub-dirs named after # the author @@ -118,11 +118,11 @@ src_unpack() { src_install () { dodir /usr/share/WindowMaker/Themes - cp -dpR * ${D}/usr/share/WindowMaker/Themes/ + cp -pR * ${D}/usr/share/WindowMaker/Themes/ # TODO: Need to clean this up at some point ... #mv ${D}/usr/share/WindowMaker/Themes/Themes/* ${D}/usr/share/WindowMaker/Themes #rm -Rf ${D}/usr/share/WindowMaker/Themes/Themes - chown -R root:root ${D}/usr/share/WindowMaker/Themes/ + chown -R root:0 ${D}/usr/share/WindowMaker/Themes/ chmod -R o-w ${D}/usr/share/WindowMaker/Themes/ } |