diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2010-12-20 09:33:22 -0600 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2011-01-10 21:35:28 -0600 |
commit | aa486f30751aae55a46476db50c9bbe630738e63 (patch) | |
tree | 142b60996987cc9960fc290d9f0bff81d7ab361b /GNUmakefile.mk | |
parent | cd0c2581d23c0ee6f22184098f87a357f6f24ed9 (diff) |
using wildcard instead of shell call in global makefile
Diffstat (limited to 'GNUmakefile.mk')
-rw-r--r-- | GNUmakefile.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/GNUmakefile.mk b/GNUmakefile.mk index 95fe9e558fe2..ccf548bda34a 100644 --- a/GNUmakefile.mk +++ b/GNUmakefile.mk @@ -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: |