Skip to content

Commit

Permalink
Write env vars into .csproj by bootstrap-bundle
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Dynalon committed Jul 30, 2012
1 parent 350cc76 commit 791bcb6
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions bootstrap-bundle
Expand Up @@ -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 ] && \
Expand Down

0 comments on commit 791bcb6

Please sign in to comment.