pkgsrc/regress/make-env-phases/Makefile
joerg ce1772b268 Remove redundant EXTRACT_ONLY and NO_CHECKSUM declarations.
Retire NO_PACAKGE as there is no technical reason for it.
2009-04-09 00:47:11 +00:00

26 lines
667 B
Makefile

# $NetBSD: Makefile,v 1.4 2009/04/09 00:47:12 joerg Exp $
#
DISTNAME= make-env-phases-1.0
CATEGORIES= regress
MASTER_SITES= # none
DISTFILES= # none
MAINTAINER= pkgsrc-users@NetBSD.org
COMMENT= Tests whether MAKE_ENV changes between build and install phase
NO_CONFIGURE= yes
WRKSRC= ${WRKDIR}
do-build:
@cd ${WRKDIR} && \
echo "${MAKE_ENV}" >build-make-env.txt
do-install:
@cd ${WRKDIR} && \
echo "${MAKE_ENV}" >install-make-env.txt && \
${CMP} build-make-env.txt install-make-env.txt >/dev/null && \
echo "The variable MAKE_ENV remains unchanged."
.include "../../devel/zlib/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"