gnucash-on-osx master: Bug 764831 - tricky behavior if multiple perl installations exist

John Ralls jralls at code.gnucash.org
Sun Apr 17 23:41:26 EDT 2016


Updated	 via  https://github.com/Gnucash/gnucash-on-osx/commit/252bae8f (commit)
	from  https://github.com/Gnucash/gnucash-on-osx/commit/bf5f9b5e (commit)



commit 252bae8f4470a3b04765e08f55401051822106c6
Author: John Ralls <jralls at ceridwen.us>
Date:   Sun Apr 17 20:38:34 2016 -0700

    Bug 764831 - tricky behavior if multiple perl installations exist
    
    Use a fixed path with just what we need rather than accepting whatever
    is in the environment.

diff --git a/gnucash-bundler/gnucash-unstable.launcher b/gnucash-bundler/gnucash-unstable.launcher
index c4d2872..8f109a1 100755
--- a/gnucash-bundler/gnucash-unstable.launcher
+++ b/gnucash-bundler/gnucash-unstable.launcher
@@ -56,7 +56,7 @@ if /bin/expr "x$1" : "x-psn_.*" > /dev/null; then
 fi
 
 export RESPFX="${bundle_res}"
-PATH="${RESPFX}"/bin:"${PATH}"
+PATH="${RESPFX}"/bin:/bin/usr/bin
 export PATH
 
 GUILE_WARN_DEPRECATED="no"
diff --git a/gnucash-bundler/gnucash.launcher b/gnucash-bundler/gnucash.launcher
index c4d2872..a4c259f 100755
--- a/gnucash-bundler/gnucash.launcher
+++ b/gnucash-bundler/gnucash.launcher
@@ -56,7 +56,7 @@ if /bin/expr "x$1" : "x-psn_.*" > /dev/null; then
 fi
 
 export RESPFX="${bundle_res}"
-PATH="${RESPFX}"/bin:"${PATH}"
+PATH="${RESPFX}"/bin:/bin:/usr/bin
 export PATH
 
 GUILE_WARN_DEPRECATED="no"



Summary of changes:
 gnucash-bundler/gnucash-unstable.launcher | 2 +-
 gnucash-bundler/gnucash.launcher          | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)



More information about the gnucash-changes mailing list