diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2023-11-02 18:27:53 +0000 |
---|---|---|
committer | Laurent Bercot <ska@appnovation.com> | 2023-11-02 18:27:53 +0000 |
commit | 813a7ae859c0563f87c2afef79d346b853c20e36 (patch) | |
tree | 36ae2db624345f0298e7070dfb5c27d44587a2d2 /Makefile | |
parent | 61d68e5efd9b81f0df3303c1a1bdefcf7688d3f1 (diff) | |
download | execline-813a7ae859c0563f87c2afef79d346b853c20e36.tar.xz |
Tentative workaround for make bug
Signed-off-by: Laurent Bercot <ska@appnovation.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -67,7 +67,7 @@ RANLIB := $(CROSS_COMPILE)ranlib STRIP := $(CROSS_COMPILE)strip INSTALL := ./tools/install.sh -$(foreach var,$(BIN_TARGETS),$(eval $(call binary_installation_rule,$(bindir),$(var)))) +$(foreach var,$(filter-out define,$(BIN_TARGETS)),$(eval $(call binary_installation_rule,$(bindir),$(var)))) $(foreach var,$(LIBEXEC_TARGETS),$(eval $(call binary_installation_rule,$(libexecdir),$(var)))) $(foreach var,$(BIN_SYMLINKS),$(eval $(call symlink_installation_rule,$(bindir),$(var)))) |