summaryrefslogtreecommitdiff
path: root/mk/flavor
diff options
context:
space:
mode:
authorrillig <rillig>2008-01-04 14:22:06 +0000
committerrillig <rillig>2008-01-04 14:22:06 +0000
commitfe12514974dbaa583309856f2f645cf9d2243fef (patch)
treeed0b87a76f34c0255afcffe733bbdcdc9d8f79ca /mk/flavor
parent105d55fda8e636c0f6910ed7cf156d5deb5c05e2 (diff)
downloadpkgsrc-fe12514974dbaa583309856f2f645cf9d2243fef.tar.gz
Reverted the change that tried to make binary packages more sane because
it had severe consequences: pkg_create gets lots of information from the filename into which the package is written. The extension decides what compression to apply, and the basename gets recorded as the @name. This part needs more work. Noticed by stoned@.
Diffstat (limited to 'mk/flavor')
-rw-r--r--mk/flavor/pkg/package.mk10
1 files changed, 2 insertions, 8 deletions
diff --git a/mk/flavor/pkg/package.mk b/mk/flavor/pkg/package.mk
index ada236d2efc..5d937e59999 100644
--- a/mk/flavor/pkg/package.mk
+++ b/mk/flavor/pkg/package.mk
@@ -1,4 +1,4 @@
-# $NetBSD: package.mk,v 1.13 2008/01/03 23:21:48 rillig Exp $
+# $NetBSD: package.mk,v 1.14 2008/01/04 14:22:06 rillig Exp $
PKG_SUFX?= .tgz
PKGFILE?= ${PKGREPOSITORY}/${PKGNAME}${PKG_SUFX}
@@ -40,13 +40,7 @@ _PKG_ARGS_PACKAGE+= -E
${PKGFILE}: ${_CONTENTS_TARGETS}
${RUN} ${MKDIR} ${.TARGET:H}
- ${RUN} if ${PKG_CREATE} ${_PKG_ARGS_PACKAGE} ${.TARGET}.tmp; then \
- ${MV} -f ${.TARGET}.tmp ${.TARGET}; \
- else \
- exitcode=$$?; \
- ${RM} -f ${.TARGET}.tmp; \
- exit $$exitcode; \
- fi
+ ${RUN} ${PKG_CREATE} ${_PKG_ARGS_PACKAGE} ${.TARGET}
######################################################################
### package-remove (PRIVATE)