summaryrefslogtreecommitdiff
path: root/pkgtools/bootstrap-extras
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2006-08-24 17:46:53 +0000
committerwiz <wiz@pkgsrc.org>2006-08-24 17:46:53 +0000
commitdfbf8665236c81f26aae67507f7144df44093342 (patch)
tree3e68d2f73ea9b3adb5e4e82c7ab461dd2cb38fc5 /pkgtools/bootstrap-extras
parentab00944ede44f48dede5e331fbbaa84b8044c63a (diff)
downloadpkgsrc-dfbf8665236c81f26aae67507f7144df44093342.tar.gz
Fix a pasto.
Correct installation logic -- it was reversed. Bump version number, since package was completely broken.
Diffstat (limited to 'pkgtools/bootstrap-extras')
-rw-r--r--pkgtools/bootstrap-extras/Makefile18
1 files changed, 9 insertions, 9 deletions
diff --git a/pkgtools/bootstrap-extras/Makefile b/pkgtools/bootstrap-extras/Makefile
index 04efe6d36a9..c7fc44c56b7 100644
--- a/pkgtools/bootstrap-extras/Makefile
+++ b/pkgtools/bootstrap-extras/Makefile
@@ -1,12 +1,12 @@
-# $NetBSD: Makefile,v 1.1.1.1 2006/07/17 14:21:31 jlam Exp $
+# $NetBSD: Makefile,v 1.2 2006/08/24 17:46:53 wiz Exp $
-DISTNAME= bootstrap-extra-files-20060714
+DISTNAME= bootstrap-extra-files-20060824
CATEGORIES= pkgtools
MASTER_SITES= # empty
DISTFILES= # empty
MAINTAINER= pkgsrc-users@NetBSD.org
-COMMENT= extra bootstrap files and scripts for ${OPSYS}
+COMMENT= Extra bootstrap files and scripts for ${OPSYS}
NO_CHECKSUM= yes
NO_MTREE= yes
@@ -21,8 +21,8 @@ NEED_FAKELDD.*= "@comment "
PLIST_SUBST+= NEED_FAKELDD=${NEED_FAKELDD}
OPSYSVARS+= NEED_MKDIR
-NEED_STRIP.UnixWare= # empty
-NEED_STRIP.*= "@comment "
+NEED_MKDIR.UnixWare= # empty
+NEED_MKDIR.*= "@comment "
PLIST_SUBST+= NEED_MKDIR=${NEED_MKDIR}
OPSYSVARS+= NEED_STRIP
@@ -31,20 +31,20 @@ NEED_STRIP.*= "@comment "
PLIST_SUBST+= NEED_STRIP=${NEED_STRIP}
do-extract:
- @${CP} -R ${FILESDIR} ${WRKSRC}
+ ${CP} -R ${FILESDIR} ${WRKSRC}
do-install:
- if ${TEST} -n ${NEED_FAKELDD:M*:Q}""; then \
+ if ${TEST} -z ${NEED_FAKELDD:M*:Q}""; then \
${INSTALL_SCRIPT_DIR} ${PREFIX}/sbin; \
${INSTALL_SCRIPT} ${WRKSRC}/fakeldd \
${PREFIX}/sbin/fakeldd; \
fi
- if ${TEST} -n ${NEED_MKDIR:M*:Q}""; then \
+ if ${TEST} -z ${NEED_MKDIR:M*:Q}""; then \
${INSTALL_SCRIPT_DIR} ${PREFIX}/bin; \
${INSTALL_SCRIPT} ${WRKSRC}/mkdir-sh \
${PREFIX}/bin/mkdir-sh; \
fi
- if ${TEST} -n ${NEED_STRIP:M*:Q}""; then \
+ if ${TEST} -z ${NEED_STRIP:M*:Q}""; then \
${INSTALL_SCRIPT_DIR} ${PREFIX}/bin; \
${INSTALL_SCRIPT} ${WRKSRC}/strip-sh \
${PREFIX}/bin/strip; \