summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJerry Alexandratos <jerry@gentoo.org>2001-07-22 04:55:49 +0000
committerJerry Alexandratos <jerry@gentoo.org>2001-07-22 04:55:49 +0000
commite48a9bdb1e0969f1e33b107d65e92d173af21ff4 (patch)
tree180f0c7fc9c29e18ae5ac718724a01548f0b571c /net-ftp/ncftp
parentFixed link of /usr/bin/ncftp -> /usr/bin/ftp. Made sure it was (diff)
downloadgentoo-2-e48a9bdb1e0969f1e33b107d65e92d173af21ff4.tar.gz
gentoo-2-e48a9bdb1e0969f1e33b107d65e92d173af21ff4.tar.bz2
gentoo-2-e48a9bdb1e0969f1e33b107d65e92d173af21ff4.zip
Arghh. ${D} in if test causes it to always be true. Fixed.
Diffstat (limited to 'net-ftp/ncftp')
-rw-r--r--net-ftp/ncftp/ncftp-3.0.3.ebuild4
1 files changed, 2 insertions, 2 deletions
diff --git a/net-ftp/ncftp/ncftp-3.0.3.ebuild b/net-ftp/ncftp/ncftp-3.0.3.ebuild
index a101b82f474d..b15118f19f0e 100644
--- a/net-ftp/ncftp/ncftp-3.0.3.ebuild
+++ b/net-ftp/ncftp/ncftp-3.0.3.ebuild
@@ -1,7 +1,7 @@
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Jerry Alexandratos <jerry@gentoo.org>
-# $Header: /var/cvsroot/gentoo-x86/net-ftp/ncftp/ncftp-3.0.3.ebuild,v 1.3 2001/07/22 04:46:35 jerry Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-ftp/ncftp/ncftp-3.0.3.ebuild,v 1.4 2001/07/22 04:55:49 jerry Exp $
A=${P}-src.tar.gz
S=${WORKDIR}/${P}
@@ -24,7 +24,7 @@ src_install() {
READLINE-README README WHATSNEW-3.0
cd ${D}/usr/bin
- if [ ! -e ${D}/usr/bin/ftp ] ;then
+ if [ ! -e /usr/bin/ftp ] ;then
ln -s ncftp ftp
fi
}