diff options
author | Alin Năstac <mrness@gentoo.org> | 2005-08-29 05:55:39 +0000 |
---|---|---|
committer | Alin Năstac <mrness@gentoo.org> | 2005-08-29 05:55:39 +0000 |
commit | aed40d7894c1c4ec179c119859010d4fe170bcb8 (patch) | |
tree | 857d09dde91d3a31d48fe2d5fefcf8ee8f34db96 /net-dialup/ppp/ppp-2.4.2-r15.ebuild | |
parent | replace cp -a with cp -pPR (#103487) (diff) | |
download | gentoo-2-aed40d7894c1c4ec179c119859010d4fe170bcb8.tar.gz gentoo-2-aed40d7894c1c4ec179c119859010d4fe170bcb8.tar.bz2 gentoo-2-aed40d7894c1c4ec179c119859010d4fe170bcb8.zip |
replace GNU only parameters of cp command (#103487) and remove old test version
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'net-dialup/ppp/ppp-2.4.2-r15.ebuild')
-rw-r--r-- | net-dialup/ppp/ppp-2.4.2-r15.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net-dialup/ppp/ppp-2.4.2-r15.ebuild b/net-dialup/ppp/ppp-2.4.2-r15.ebuild index e422c246943c..2e7adb8c2d5d 100644 --- a/net-dialup/ppp/ppp-2.4.2-r15.ebuild +++ b/net-dialup/ppp/ppp-2.4.2-r15.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/net-dialup/ppp/ppp-2.4.2-r15.ebuild,v 1.1 2005/07/29 12:35:08 mrness Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dialup/ppp/ppp-2.4.2-r15.ebuild,v 1.2 2005/08/29 05:55:39 mrness Exp $ inherit eutils gnuconfig flag-o-matic linux-info @@ -214,9 +214,9 @@ pkg_postinst() { fi #create *-secrets files if not exists [ -f "${ROOT}/etc/ppp/pap-secrets" ] || \ - cp -a "${ROOT}/etc/ppp/pap-secrets.example" "${ROOT}/etc/ppp/pap-secrets" + cp -pP "${ROOT}/etc/ppp/pap-secrets.example" "${ROOT}/etc/ppp/pap-secrets" [ -f "${ROOT}/etc/ppp/chap-secrets" ] || \ - cp -a "${ROOT}/etc/ppp/chap-secrets.example" "${ROOT}/etc/ppp/chap-secrets" + cp -pP "${ROOT}/etc/ppp/chap-secrets.example" "${ROOT}/etc/ppp/chap-secrets" ewarn "To enable kernel-pppoe read html/pppoe.html in the doc-directory." ewarn "Note: the library name has changed from pppoe.so to rp-pppoe.so." |