diff options
author | Felix Fietkau <nbd@nbd.name> | 2017-01-18 17:56:13 +0100 |
---|---|---|
committer | Felix Fietkau <nbd@nbd.name> | 2017-01-18 23:57:09 +0100 |
commit | 131db366a3785a72b6e742f1842d29c1ad200601 (patch) | |
tree | 120cf96c9cda355e076984d671cd19ef6d5bc5c2 /include | |
parent | 7a523569f7f403cdd7c2074cc49920f1dd7ecc70 (diff) | |
download | upstream-131db366a3785a72b6e742f1842d29c1ad200601.tar.gz upstream-131db366a3785a72b6e742f1842d29c1ad200601.tar.bz2 upstream-131db366a3785a72b6e742f1842d29c1ad200601.zip |
build: remove separate /install step for host builds
Reduces the number of recursive make invocations
Signed-off-by: Felix Fietkau <nbd@nbd.name>
Diffstat (limited to 'include')
-rw-r--r-- | include/host-build.mk | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/host-build.mk b/include/host-build.mk index c38f8cfeb7..23565533ba 100644 --- a/include/host-build.mk +++ b/include/host-build.mk @@ -177,8 +177,7 @@ ifndef DUMP .host-prepare: $(HOST_STAMP_PREPARED) .host-configure: $(HOST_STAMP_CONFIGURED) - .host-compile: $(HOST_STAMP_BUILT) $(if $(STAMP_BUILT),$(HOST_STAMP_INSTALLED)) - .host-install: $(HOST_STAMP_INSTALLED) + .host-compile: $(HOST_STAMP_BUILT) $(HOST_STAMP_INSTALLED) host-clean: FORCE $(call Host/Clean) $(call Host/Uninstall) |