mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-05 12:16:00 +00:00
Merge "BuildSystem: Do not warn when bash is not installed."
This commit is contained in:
7
Makefile
7
Makefile
@@ -604,7 +604,12 @@ $(SUBDIRS_INSTALL):
|
|||||||
|
|
||||||
NEWMODS:=$(foreach d,$(MOD_SUBDIRS),$(notdir $(wildcard $(d)/*.so)))
|
NEWMODS:=$(foreach d,$(MOD_SUBDIRS),$(notdir $(wildcard $(d)/*.so)))
|
||||||
OLDMODS=$(filter-out $(NEWMODS) $(notdir $(DESTDIR)$(ASTMODDIR)),$(notdir $(wildcard $(DESTDIR)$(ASTMODDIR)/*.so)))
|
OLDMODS=$(filter-out $(NEWMODS) $(notdir $(DESTDIR)$(ASTMODDIR)),$(notdir $(wildcard $(DESTDIR)$(ASTMODDIR)/*.so)))
|
||||||
BADMODS=$(strip $(filter-out $(shell ./build_tools/list_valid_installed_externals),$(OLDMODS)))
|
ifneq ($(BASH),:)
|
||||||
|
FILMODS=$(filter-out $(shell ./build_tools/list_valid_installed_externals),$(OLDMODS))
|
||||||
|
else
|
||||||
|
FILMODS=$(OLDMODS)
|
||||||
|
endif
|
||||||
|
BADMODS=$(strip $(FILMODS))
|
||||||
|
|
||||||
oldmodcheck:
|
oldmodcheck:
|
||||||
@if [ -n "$(BADMODS)" ]; then \
|
@if [ -n "$(BADMODS)" ]; then \
|
||||||
|
Reference in New Issue
Block a user