diff options
author | Björn Gustavsson <[email protected]> | 2012-02-13 16:09:33 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2012-02-13 16:09:33 +0100 |
commit | b0be4ac9eb763b2d1f31712ff33346fb968ba582 (patch) | |
tree | ae2f08fbc907f62b6dd6078c22ad53cc5d42e20c /Makefile.in | |
parent | e0222e33523e9d01d1ec82d88560c30375a255cd (diff) | |
parent | c58d64db07921970e539f346dc65f13d5f3bc975 (diff) | |
download | otp-b0be4ac9eb763b2d1f31712ff33346fb968ba582.tar.gz otp-b0be4ac9eb763b2d1f31712ff33346fb968ba582.tar.bz2 otp-b0be4ac9eb763b2d1f31712ff33346fb968ba582.zip |
Merge branch 'maint'
* maint:
Include the xmerl include files in the bootstrap
Teach lib/Makefile to build applications listed in EXTRA-APPLICATIONS
Clean up lib/Makefile
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index 648575e5fd..2ded1b4356 100644 --- a/Makefile.in +++ b/Makefile.in @@ -598,6 +598,18 @@ secondary_bootstrap_copy: cp $$x $$TF; \ true; \ done + if test ! -d $(BOOTSTRAP_ROOT)/bootstrap/lib/xmerl ; then mkdir $(BOOTSTRAP_ROOT)/bootstrap/lib/xmerl ; fi + if test ! -d $(BOOTSTRAP_ROOT)/bootstrap/lib/xmerl/include ; then mkdir $(BOOTSTRAP_ROOT)/bootstrap/lib/xmerl/include ; fi + for x in lib/xmerl/include/*.hrl; do \ + BN=`basename $$x`; \ + TF=$(BOOTSTRAP_ROOT)/bootstrap/lib/xmerl/include/$$BN; \ + test -f $$TF && \ + test '!' -z "`find $$x -newer $$TF -print`" && \ + cp $$x $$TF; \ + test '!' -f $$TF && \ + cp $$x $$TF; \ + true; \ + done tertiary_bootstrap_build: cd lib && \ |