From 88821fa4ab713d4db91d1fd44abd812760cfe4d3 Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Sun, 7 Nov 2010 09:14:02 -0800 Subject: [PATCH] nrelease - Add target to help w/ debugging * Add a nopkgs target which disables the package step, for debugging purposes only. --- nrelease/Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/nrelease/Makefile b/nrelease/Makefile index 776d7257f9..8cf271f661 100644 --- a/nrelease/Makefile +++ b/nrelease/Makefile @@ -8,7 +8,7 @@ # # img is now the default (produces both the .iso and .img) # -gui installer img: +gui installer img nopkgs: ######################################################################### # SETUP # @@ -113,6 +113,8 @@ ROOTSKELS?= ${REQ_ROOTSKELS} .if make(gui) ISOFILE?= ${ISODIR}/dfly-gui.iso IMGFILE?= ${ISODIR}/dfly-gui.img + +.if !make(nopkgs) PKGSRC_PACKAGES+= meta-pkgs/modular-xorg-apps \ meta-pkgs/modular-xorg-drivers \ meta-pkgs/modular-xorg-fonts \ @@ -140,6 +142,8 @@ PKGSRC_PACKAGES+= meta-pkgs/modular-xorg-apps \ net/rsync \ time/asclock \ misc/screen +.endif + ROOTSKELS+= ${.CURDIR}/gui .endif -- 2.41.0