mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-16 23:08:32 +00:00
Merge "BuildSystem: Do not warn when bash is not installed." into 13
This commit is contained in:
7
Makefile
7
Makefile
@@ -605,7 +605,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