Skip to content

Commit

Permalink
Propagate SAVE_SOURCE_DEBUG variable
Browse files Browse the repository at this point in the history
bug22942: Fix the makefile so it properly propagates the
value of the SAVE_SOURCE_DEBUG environment variable

Change-Id: I1d6131722769b0edf18995dd33c189e2994909fd
  • Loading branch information
Duane Rettig committed Jan 6, 2015
1 parent 643c24b commit 3da7b06
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Makefile
Expand Up @@ -167,6 +167,7 @@ DEBUG = 1
RECORD_XREF_INFO = nil
RECORD_SOURCE_FILE_INFO = nil
SAVE_LOCAL_NAMES = nil
SAVE_SOURCE_DEBUG = nil
LOAD_XREF_INFO = nil
LOAD_SOURCE_FILE_INFO = nil
LOAD_LOCAL_NAMES_INFO = nil
Expand Down Expand Up @@ -266,6 +267,7 @@ compile-no-clos-CLX: $(C_OBJS)
(*record-xref-info* $(RECORD_XREF_INFO)) \
(*load-xref-info* $(LOAD_XREF_INFO)) \
(comp::save-local-names-switch $(SAVE_LOCAL_NAMES)) \
(comp:save-source-level-debug-info-switch $(SAVE_SOURCE_DEBUG)) \
(*compile-print* $(compile_print)) \
(*compile-verbose* $(compile_verbose))) \
(setf (sys:gsgc-switch :print) $(gc_print)) \
Expand Down Expand Up @@ -294,6 +296,7 @@ compile-partial-clos-CLX: $(C_OBJS)
(*record-xref-info* $(RECORD_XREF_INFO)) \
(*load-xref-info* $(LOAD_XREF_INFO)) \
(comp::save-local-names-switch $(SAVE_LOCAL_NAMES)) \
(comp:save-source-level-debug-info-switch $(SAVE_SOURCE_DEBUG)) \
(*compile-verbose* $(compile_verbose)) \
(*compile-print* $(compile_print))) \
(setf (sys:gsgc-switch :print) $(gc_print)) \
Expand All @@ -320,6 +323,7 @@ compile-full-clos-CLX: $(C_OBJS)
(*record-xref-info* $(RECORD_XREF_INFO)) \
(*load-xref-info* $(LOAD_XREF_INFO)) \
(comp::save-local-names-switch $(SAVE_LOCAL_NAMES)) \
(comp:save-source-level-debug-info-switch $(SAVE_SOURCE_DEBUG)) \
(*compile-print* $(compile_print)) \
(*compile-verbose* $(compile_verbose))) \
(setf (sys:gsgc-switch :print) $(gc_print)) \
Expand Down

0 comments on commit 3da7b06

Please sign in to comment.