summaryrefslogtreecommitdiff
path: root/GNUmakefile
diff options
context:
space:
mode:
authorBjoern Michaelsen <b_michaelsen@openoffice.org>2010-11-23 14:45:02 +0100
committerBjoern Michaelsen <b_michaelsen@openoffice.org>2010-11-23 14:45:02 +0100
commitab4d0f4352a369c52957756fd5fab83c3c6b791d (patch)
tree215630e11428deee3c2ed69142e0f39af256ea17 /GNUmakefile
parentbe3b2759c231133e6aea812ac80f13d40174bbbd (diff)
gnumake2: using wildcard instead of shell call in global makefile
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 8cfea73bbcf6..018b21e3f1ac 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -32,6 +32,6 @@ endif
GBUILDDIR := $(SOLARENV)/gbuild
include $(GBUILDDIR)/gbuild.mk
-$(foreach repo,$(gb_REPOS),$(eval $(call gb_Module_make_global_targets,$(shell ls $(repo)/Module_*.mk))))
+$(foreach repo,$(gb_REPOS),$(eval $(call gb_Module_make_global_targets,$(wildcard $(repo)/Module_*.mk))))
# vim: set noet sw=4 ts=4: