diff options
author | Timo Dörr <timo@latecrew.de> | 2012-08-18 20:41:06 +0200 |
---|---|---|
committer | Bertrand Lorentz <bertrand.lorentz@gmail.com> | 2012-08-18 20:41:06 +0200 |
commit | 88af291ddce18027d9d0c793f11f207249ff7a90 (patch) | |
tree | 0c2b83ff802a83f57c4802dd343f7da8ac66afb9 | |
parent | 853707a9ebaff460baf445cca922739d72372238 (diff) |
bootstrap-bundle: Fix GTK2_RC_FILES env var on OS X (bgo#682086)
Signed-off-by: Bertrand Lorentz <bertrand.lorentz@gmail.com>
-rwxr-xr-x | bootstrap-bundle | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstrap-bundle b/bootstrap-bundle index 5f172d4bf..187ac793e 100755 --- a/bootstrap-bundle +++ b/bootstrap-bundle @@ -31,7 +31,7 @@ pushd ../bockbuild/profiles/banshee &>/dev/null popd &>/dev/null [ $profile_name = darwin ] && \ - echo "export GTK2_RC_FILES=\"$selfdir/../../bockbuild/profiles/banshee/skeleton.darwin/Contents/Resources/etc/gtk-2.0/gtkrc\"" >> "$envfile" + echo "export GTK2_RC_FILES=\"$selfdir/../bockbuild/profiles/banshee/skeleton.darwin/Contents/Resources/etc/gtk-2.0/gtkrc\"" >> "$envfile" source "$envfile" |