diff options
author | asau <asau@pkgsrc.org> | 2012-08-01 12:28:18 +0000 |
---|---|---|
committer | asau <asau@pkgsrc.org> | 2012-08-01 12:28:18 +0000 |
commit | 33215655b7b8a3355d3c1823b3bda430c0e0a17f (patch) | |
tree | c0c1b5178616a6e448eadd260852cfc15f94c61c /sysutils | |
parent | f31a02cccdcab11b8cd5eafccf239e49e8041b76 (diff) | |
download | pkgsrc-33215655b7b8a3355d3c1823b3bda430c0e0a17f.tar.gz |
Slightly simplify build process.
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/xenkernel41/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sysutils/xenkernel41/Makefile b/sysutils/xenkernel41/Makefile index c07d4410732..27d0e35b8a6 100644 --- a/sysutils/xenkernel41/Makefile +++ b/sysutils/xenkernel41/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 2012/08/01 12:22:28 asau Exp $ +# $NetBSD: Makefile,v 1.10 2012/08/01 12:28:18 asau Exp $ # VERSION= 4.1.2 @@ -37,11 +37,11 @@ XENKERNELDIR= ${PREFIX}/${INSTALLATION_DIRS} MESSAGE_SUBST+= XENKERNELDIR=${XENKERNELDIR:Q} do-build: - cd ${WRKSRC} && ${BUILD_MAKE_CMD} debug=n xen - ${CP} ${WRKSRC}/dist/install/boot/xen.gz ${WRKDIR}/xen.gz + cd ${WRKSRC}/xen && ${BUILD_MAKE_CMD} debug=n build + ${CP} ${WRKSRC}/xen/xen.gz ${WRKDIR}/xen.gz cd ${WRKSRC}/xen && ${MAKE_PROGRAM} clean - cd ${WRKSRC} && ${BUILD_MAKE_CMD} debug=y xen - ${CP} ${WRKSRC}/dist/install/boot/xen.gz ${WRKDIR}/xen-debug.gz + cd ${WRKSRC}/xen && ${BUILD_MAKE_CMD} debug=y build + ${CP} ${WRKSRC}/xen/xen.gz ${WRKDIR}/xen-debug.gz do-install: ${INSTALL_DATA} ${WRKDIR}/xen.gz \ |