diff options
author | tron <tron@pkgsrc.org> | 2007-07-11 19:27:18 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2007-07-11 19:27:18 +0000 |
commit | d6be8387513ed728224f230683627ea7001f8ffe (patch) | |
tree | 4633e4ed4c894dfa89a3b87469a92c934515095d /net/tnftp | |
parent | 2e3b33f683df6f0f63b9805e4be27a08acfb3c19 (diff) | |
download | pkgsrc-d6be8387513ed728224f230683627ea7001f8ffe.tar.gz |
Fix an installation problem under Mac OS X on a case-insensitive filesystem.
"bmake" would always report that "`install' is up to date." because it
finds "INSTALL" when searching for "install".
Diffstat (limited to 'net/tnftp')
-rw-r--r-- | net/tnftp/Makefile.common | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/tnftp/Makefile.common b/net/tnftp/Makefile.common index 3cb8176c28b..84c58de04b8 100644 --- a/net/tnftp/Makefile.common +++ b/net/tnftp/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.1 2006/07/14 21:41:42 jlam Exp $ +# $NetBSD: Makefile.common,v 1.2 2007/07/11 19:27:18 tron Exp $ DISTNAME= tnftp-20050625 SVR4_PKGNAME= tnftp @@ -25,3 +25,4 @@ MAKE_ENV.SunOS+= CPPFLAGS="" do-extract: @${CP} -R ${FILESDIR} ${WRKSRC} + @${RM} -f ${WRKSRC}/INSTALL |