diff options
author | Björn Gustavsson <[email protected]> | 2012-02-10 12:23:50 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2012-02-10 12:23:50 +0100 |
commit | 5fad4a37f440739b8cb6d2a11e89bf3b825c6f97 (patch) | |
tree | 4cf2de9807ad48856072cdad2ae2d275af8ca945 | |
parent | b4607b03321ad0f0f99cf8905da84dd5e47eb733 (diff) | |
download | otp-5fad4a37f440739b8cb6d2a11e89bf3b825c6f97.tar.gz otp-5fad4a37f440739b8cb6d2a11e89bf3b825c6f97.tar.bz2 otp-5fad4a37f440739b8cb6d2a11e89bf3b825c6f97.zip |
Include the xmerl include files in the bootstrap
-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 && \ |