aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2012-02-13 16:09:33 +0100
committerBjörn Gustavsson <[email protected]>2012-02-13 16:09:33 +0100
commitb0be4ac9eb763b2d1f31712ff33346fb968ba582 (patch)
treeae2f08fbc907f62b6dd6078c22ad53cc5d42e20c /Makefile.in
parente0222e33523e9d01d1ec82d88560c30375a255cd (diff)
parentc58d64db07921970e539f346dc65f13d5f3bc975 (diff)
downloadotp-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.in12
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 && \