diff options
author | Björn Gustavsson <[email protected]> | 2011-09-19 14:57:32 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2011-09-19 14:57:32 +0200 |
commit | 720b39f0b0cda409559e08e9fe0012b74d2462eb (patch) | |
tree | 7c44e23b8c9c2263bc84fb32fe0614b8a513c916 /otp_build | |
parent | 171407b6afb043c7d56fb78c8692fab3b99c4be6 (diff) | |
parent | bb3f5af90f947d63e36cc9922acb9958acb0ab49 (diff) | |
download | otp-720b39f0b0cda409559e08e9fe0012b74d2462eb.tar.gz otp-720b39f0b0cda409559e08e9fe0012b74d2462eb.tar.bz2 otp-720b39f0b0cda409559e08e9fe0012b74d2462eb.zip |
Merge branch 'bjorn/clean-up-bootstraps' into dev
* bjorn/clean-up-bootstraps:
Merge the fourth bootstrap stage into the third bootstrap stage
Remove unused lib/orber/include/Makefile
Remove lib/orber/include/* from the primary bootstrap
otp_build update_primary: Don't commit generated source files
primary bootstrap: Remove source files
Diffstat (limited to 'otp_build')
-rwxr-xr-x | otp_build | 11 |
1 files changed, 3 insertions, 8 deletions
@@ -878,8 +878,10 @@ do_primary_git () git add -A bootstrap/lib/kernel \ bootstrap/lib/stdlib \ bootstrap/lib/compiler \ - bootstrap/lib/orber/include \ bootstrap/bin + find bootstrap -name egen -o -name '*.script' -o \ + -name '*.app' -o -name '*.appup' | + xargs git reset HEAD git commit --no-verify -m 'Update primary bootstrap' } @@ -1001,24 +1003,17 @@ do_copy_primary_bootstrap () test -d $bootstrap/lib/kernel/ebin || mkdir -p $bootstrap/lib/kernel/ebin test -d $bootstrap/lib/kernel/include || mkdir -p $bootstrap/lib/kernel/include cp -f $lib_src/kernel/ebin/*.beam $bootstrap/lib/kernel/ebin - cp -f $lib_src/kernel/ebin/*.app* $bootstrap/lib/kernel/ebin cp -f $lib_src/kernel/include/*.hrl $bootstrap/lib/kernel/include # stdlib test -d $bootstrap/lib/stdlib/ebin || mkdir -p $bootstrap/lib/stdlib/ebin test -d $bootstrap/lib/stdlib/include || mkdir -p $bootstrap/lib/stdlib/include cp -f $lib_src/stdlib/ebin/*.beam $bootstrap/lib/stdlib/ebin - cp -f $lib_src/stdlib/ebin/*.app* $bootstrap/lib/stdlib/ebin cp -f $lib_src/stdlib/include/*.hrl $bootstrap/lib/stdlib/include # compiler test -d $bootstrap/lib/compiler/ebin || mkdir -p $bootstrap/lib/compiler/ebin cp -f $lib_src/compiler/ebin/*.beam $bootstrap/lib/compiler/ebin - cp -f $lib_src/compiler/ebin/*.app* $bootstrap/lib/compiler/ebin - - # orber include - test -d $bootstrap/lib/orber/include || mkdir -p $bootstrap/lib/orber/include - cp -f $lib_src/orber/include/* $bootstrap/lib/orber/include # bootstrap bin if [ $bootstrap_src_top != $ERL_TOP ]; then |