From 5fb31a37c114d0674ff3294011adf8c63c12c3fe Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Sun, 19 May 2019 20:21:49 -0400 Subject: build: Don't make install stamp --- diff --git a/build b/build index 5a19fe6..742076a 100755 --- a/build +++ b/build @@ -309,7 +309,7 @@ configure_$(target): configure-$(type) build_$(target): build-$(type) install_$(target): install-$(type) -configure build install: +configure_ build_ install_: set -e; \ for tgt in $(targets); do \ if [ x"$${tgt}" = x'$(OPK_HOST_ARCH)' ]; then \ @@ -317,10 +317,15 @@ configure build install: else \ type='cross'; \ fi; \ - $(MAKE) -f ../build target=$${tgt} type=$${type} $@_$${tgt}; \ + $(MAKE) -f ../build target=$${tgt} type=$${type} $@$${tgt}; \ done + +build_: configure +install_: build + +configure build: touch $@ -configure: -build: configure -install: build +configure: configure_ +build: build_ +install: install_ -- cgit v0.9.1