build: allow skipping external-deps 22/38122/5
authorMohammed Hawari <mohammed@hawari.fr>
Thu, 2 Feb 2023 12:29:28 +0000 (13:29 +0100)
committerDamjan Marion <dmarion@0xa5.net>
Wed, 8 Feb 2023 10:13:51 +0000 (10:13 +0000)
Change-Id: I0e5090ec6978af0dc4baecc7654918cf40663f42
Signed-off-by: Mohammed Hawari <mohammed@hawari.fr>
Type: feature

build/external/deb/debian/rules
build/external/packages.mk

index cf4b4d9..901d468 100755 (executable)
@@ -26,6 +26,7 @@ override_dh_auto_configure:
 
 override_dh_install:
        make $(MAKE_ARGS) install
+       @mkdir -p $(INSTALL_DIR)
        dh_install -p$(PKG) --autodest /opt
 
 override_dh_shlibdeps:
index 99322ae..b969d8f 100644 (file)
@@ -101,11 +101,18 @@ define $1_config_cmds
 endef
 endif
 
+ifneq ($(filter $1,$(VPP_SKIP_EXTERNAL)), $1)
 $(B)/.$1.config.ok: $(B)/.$1.patch.ok $(addsuffix -install,$($1_depends))
        $$(call h1,"configuring $1 $($1_version) - log: $$($1_config_log)")
        @mkdir -p $$($1_build_dir)
        $$(call $1_config_cmds)
        @touch $$@
+else
+$(B)/.$1.config.ok:
+       $$(call h1,"Skipping $1 $($1_version)")
+       @mkdir -p $(B)
+       @touch $$@
+endif
 
 .PHONY: $1-config
 $1-config: $(B)/.$1.config.ok
@@ -120,10 +127,17 @@ define $1_build_cmds
 endef
 endif
 
+ifneq ($(filter $1,$(VPP_SKIP_EXTERNAL)), $1)
 $(B)/.$1.build.ok: $(B)/.$1.config.ok
        $$(call h1,"building $1 $($1_version) - log: $$($1_build_log)")
        $$(call $1_build_cmds)
        @touch $$@
+else
+$(B)/.$1.build.ok:
+       $$(call h1,"Skipping $1 $($1_version)")
+       @mkdir -p $(B)
+       @touch $$@
+endif
 
 .PHONY: $1-build
 $1-build: $(B)/.$1.build.ok
@@ -138,10 +152,17 @@ define $1_install_cmds
 endef
 endif
 
+ifneq ($(filter $1,$(VPP_SKIP_EXTERNAL)), $1)
 $(B)/.$1.install.ok: $(B)/.$1.build.ok
        $$(call h1,"installing $1 $($1_version) - log: $$($1_install_log)")
        $$(call $1_install_cmds)
        @touch $$@
+else
+$(B)/.$1.install.ok:
+       $$(call h1,"Skipping $1 $($1_version)")
+       @mkdir -p $(B)
+       @touch $$@
+endif
 
 .PHONY: $1-install
 $1-install: $(B)/.$1.install.ok