aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2012-02-13 16:09:10 +0100
committerBjörn Gustavsson <[email protected]>2012-02-13 16:09:10 +0100
commitc58d64db07921970e539f346dc65f13d5f3bc975 (patch)
tree6749ef8d5ce94653700184b569c4d806f91c41a2 /Makefile.in
parent86231a380b27fc262e48aa8c3f0372d4d2056682 (diff)
parent5fad4a37f440739b8cb6d2a11e89bf3b825c6f97 (diff)
downloadotp-c58d64db07921970e539f346dc65f13d5f3bc975.tar.gz
otp-c58d64db07921970e539f346dc65f13d5f3bc975.tar.bz2
otp-c58d64db07921970e539f346dc65f13d5f3bc975.zip
Merge branch 'bjorn/makefiles' into maint
* bjorn/makefiles: 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 && \