mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-03 03:20:57 +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)))
|
||||
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:
|
||||
@if [ -n "$(BADMODS)" ]; then \
|
||||
|
Reference in New Issue
Block a user