Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Hutchinson <mhutchinson@novell.com>2011-03-11 04:37:45 +0300
committerMichael Hutchinson <mhutchinson@novell.com>2011-03-11 04:37:45 +0300
commit9bda03b36c9e78beac84a2fb5f53d701fcfc8786 (patch)
treebf7a236dec2a05a025073c63afef0e51a3b09361 /main/Makefile.include
parent9cdd1f6d7571637f5ff3e40f5fb0b744cd01cd55 (diff)
Use captured environment in make run
Diffstat (limited to 'main/Makefile.include')
-rw-r--r--main/Makefile.include11
1 files changed, 8 insertions, 3 deletions
diff --git a/main/Makefile.include b/main/Makefile.include
index fc87308118..3ae8fdd719 100644
--- a/main/Makefile.include
+++ b/main/Makefile.include
@@ -11,7 +11,12 @@ abs_top_builddir ?= $(top_builddir)
MD_BIN_PATH=$(abs_top_builddir)/build/bin
MD_LAUNCH_SETUP= \
- MONODEVELOP_LOCALE_PATH=$(abs_top_builddir)/build/locale \
- MONO_ADDINS_REGISTRY=$(MD_BIN_PATH)
+ PATH="$(PATH)" \
+ PKG_CONFIG_PATH="$(PKG_CONFIG_PATH)" \
+ LD_LIBRARY_PATH="$(LD_LIBRARY_PATH)" \
+ DYLD_FALLBACK_LIBRARY_PATH="$(DYLD_FALLBACK_LIBRARY_PATH)" \
+ MONO_GAC_PREFIX="$(MONO_GAC_PREFIX)" \
+ MONODEVELOP_LOCALE_PATH="$(abs_top_builddir)/build/locale" \
+ MONO_ADDINS_REGISTRY="$(MD_BIN_PATH)"
-MDTOOL_RUN=$(MD_LAUNCH_SETUP) exec -a "mdtool" $(RUNTIME) --debug $(MD_BIN_PATH)/mdrun.exe
+MDTOOL_RUN=$(MD_LAUNCH_SETUP) exec -a "mdtool" $(RUNTIME) --debug "$(MD_BIN_PATH)/mdrun.exe"