[banshee] OSX: Make bootstrap-bundle write env vars into .csproj (bgo#682094)



commit 4457b0b383cf5cf0dac39bc9a3da7a479a32ce5a
Author: Timo DÃrr <timo latecrew de>
Date:   Thu Jul 19 19:55:34 2012 +0200

    OSX: Make bootstrap-bundle write env vars into .csproj (bgo#682094)
    
    When running the ./bootstrap-bundle script and the profile is darwin, we
    call bockbuilds --csproj-insert= to write all environment variables that
    load the build-root into the Nereid.csproj file. That way one can
    directly after ./bootstrap-bundle launch MonoDevelop and build & run
    banshee from there.
    
    Signed-off-by: Bertrand Lorentz <bertrand lorentz gmail com>

 bootstrap-bundle |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)
---
diff --git a/bootstrap-bundle b/bootstrap-bundle
index 187ac79..07b827f 100755
--- a/bootstrap-bundle
+++ b/bootstrap-bundle
@@ -28,6 +28,11 @@ envfile="$selfdir/$profile_name.env"
 pushd ../bockbuild/profiles/banshee &>/dev/null
 ./$profile -bv
 ./$profile -e > "$envfile"
+
+# write the newly generated env vars as xml into the Nereid.csproj
+# so we can start with MonoDevelop immediately.
+[ $profile_name = darwin ] && \
+	./$profile --csproj-insert="$selfdir/src/Clients/Nereid/Nereid.csproj"
 popd &>/dev/null
 
 [ $profile_name = darwin ] && \



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]