diff options
author | tron <tron> | 2007-07-11 19:27:18 +0000 |
---|---|---|
committer | tron <tron> | 2007-07-11 19:27:18 +0000 |
commit | 8c56696c133d1653e20bc0c680ffe55e02ef5303 (patch) | |
tree | 4633e4ed4c894dfa89a3b87469a92c934515095d | |
parent | 0fd5ab79cffc2023179eb6f32801c26c9ce0ff07 (diff) | |
download | pkgsrc-8c56696c133d1653e20bc0c680ffe55e02ef5303.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".
-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 |