When compiling in an Emacs-spawned shell, always print directory names.

This change ensures that Emacs can find the proper source files when parsing
compiler error messages, since it uses the 'make' output including directory
names to do it.



git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@201135 65c4cc65-6c06-0410-ace0-fbb531ad65f3
certified/1.8.6
Kevin P. Fleming 17 years ago
parent 4a93d3bcb5
commit ab73c3aabe

@ -327,6 +327,10 @@ endif
# comment to print directories during submakes
#PRINT_DIR=yes
ifneq ($(INSIDE_EMACS),)
PRINT_DIR=yes
endif
SILENTMAKE:=$(MAKE) --quiet --no-print-directory
ifneq ($(PRINT_DIR)$(NOISY_BUILD),)
SUBMAKE:=$(MAKE)

Loading…
Cancel
Save