summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Bockover <abockover@novell.com>2010-03-29 13:19:12 -0400
committerAaron Bockover <abockover@novell.com>2010-03-29 13:22:30 -0400
commitb39f702c1221b743415ae807581ae02da0b060b2 (patch)
treefebfceabea3c60cf79812bf547fac5c7f798c2ea
parent6d2a875992c9e6e57b354ef79ca45ee1b4f61812 (diff)
[bootstrap-bundle] work with external bockbuild
-rwxr-xr-xbootstrap-bundle6
1 files changed, 3 insertions, 3 deletions
diff --git a/bootstrap-bundle b/bootstrap-bundle
index 4d87c50b9..ca32db64e 100755
--- a/bootstrap-bundle
+++ b/bootstrap-bundle
@@ -17,7 +17,7 @@ fi
profile="profile.$profile_name.py"
-if ! test -f "build/bundle/$profile"; then
+if ! test -f "../bockbuild/profiles/banshee/$profile"; then
echo "Profile does not exist: build/bundle/$profile"
exit 1
fi
@@ -25,13 +25,13 @@ fi
selfdir="$(pwd)/$(dirname "$0")"
envfile="$selfdir/$profile_name.env"
-pushd build/bundle &>/dev/null
+pushd ../bockbuild/profiles/banshee &>/dev/null
./$profile -bv
./$profile -e > "$envfile"
popd &>/dev/null
[ $profile_name = darwin ] && \
- echo "export GTK2_RC_FILES=\"$selfdir/build/bundle/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"