summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbuild15
1 files changed, 10 insertions, 5 deletions
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_