diff options
author | Sam James <sam@gentoo.org> | 2021-04-02 07:14:09 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-04-03 16:43:33 +0100 |
commit | 58f1ba199268fb7634f98605843a70f4392483a5 (patch) | |
tree | 8e50bbc646c71d92525242db19f0ab61160e9385 /net-misc | |
parent | net-mail/qmailadmin: fix variable references (diff) | |
download | gentoo-58f1ba199268fb7634f98605843a70f4392483a5.tar.gz gentoo-58f1ba199268fb7634f98605843a70f4392483a5.tar.bz2 gentoo-58f1ba199268fb7634f98605843a70f4392483a5.zip |
net-misc/adjtimex: fix variable references
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/adjtimex/adjtimex-1.29-r2.ebuild | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/net-misc/adjtimex/adjtimex-1.29-r2.ebuild b/net-misc/adjtimex/adjtimex-1.29-r2.ebuild index b551ebc5c36c..7db9170ce404 100644 --- a/net-misc/adjtimex/adjtimex-1.29-r2.ebuild +++ b/net-misc/adjtimex/adjtimex-1.29-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="7" @@ -21,11 +21,10 @@ KEYWORDS="~alpha amd64 ppc x86" IUSE="" DEPEND="sys-apps/sed" -RDEPEND="" src_unpack() { unpack "${DEBIAN_SRC}" - cd "${S}" || die "Failed to cd $S" + cd "${S}" || die "Failed to cd ${S}" unpack "${DEBIAN_PATCH}" } |