diff options
author | Lukas Rusak <lorusak@gmail.com> | 2023-02-03 19:34:56 -0800 |
---|---|---|
committer | Lukas Rusak <lorusak@gmail.com> | 2023-02-04 14:02:18 -0800 |
commit | b17440f3e44c753394fb264c5bff8ccd81c9c898 (patch) | |
tree | 20ce9811b98d6e26151f415cdbd8eee9446863ab /tools/depends | |
parent | 9e62e8a3dbb4ec88232b2e7fa163c92ac6f30ba3 (diff) |
tools/depends: wayland: don't rebuild if already installed
Signed-off-by: Lukas Rusak <lorusak@gmail.com>
Diffstat (limited to 'tools/depends')
-rw-r--r-- | tools/depends/target/wayland/Makefile | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/tools/depends/target/wayland/Makefile b/tools/depends/target/wayland/Makefile index 5df950191c..403b41578e 100644 --- a/tools/depends/target/wayland/Makefile +++ b/tools/depends/target/wayland/Makefile @@ -12,8 +12,6 @@ include ../../download-files.include # configuration settings CONFIGURE=./configure --prefix=$(PREFIX) --with-host-scanner --disable-documentation --disable-dtd-validation -LIBDYLIB=$(PLATFORM)/.libs/libwayland-client.la - all: .installed-$(PLATFORM) @@ -22,10 +20,8 @@ $(PLATFORM): $(DEPS) | $(TARBALLS_LOCATION)/$(ARCHIVE).$(HASH_TYPE) cd $(PLATFORM); $(ARCHIVE_TOOL) $(ARCHIVE_TOOL_FLAGS) $(TARBALLS_LOCATION)/$(ARCHIVE) cd $(PLATFORM); $(CONFIGURE) -$(LIBDYLIB): $(PLATFORM) +.installed-$(PLATFORM): $(PLATFORM) $(MAKE) -C $(PLATFORM) - -.installed-$(PLATFORM): $(LIBDYLIB) $(MAKE) -C $(PLATFORM) install # remove the target wayland scanner from the sysroot. We only want to use the native one |