diff options
author | Dan Gudmundsson <[email protected]> | 2011-12-07 13:13:22 +0100 |
---|---|---|
committer | Dan Gudmundsson <[email protected]> | 2011-12-09 14:53:03 +0100 |
commit | 7fdc3f2f145c0b2f4785b5efec522218d0080cf6 (patch) | |
tree | be5593211df26cc9ca403322b1f69a000e5102c7 /Makefile.in | |
parent | ebb2a4c2e9e01d59d8074bcda5c97f2c3b200d76 (diff) | |
download | otp-7fdc3f2f145c0b2f4785b5efec522218d0080cf6.tar.gz otp-7fdc3f2f145c0b2f4785b5efec522218d0080cf6.tar.bz2 otp-7fdc3f2f145c0b2f4785b5efec522218d0080cf6.zip |
[wx] Avoid missing wx_object behaviour warning
Copy wx_object to bootstrap compiler
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 c88e967e36..648575e5fd 100644 --- a/Makefile.in +++ b/Makefile.in @@ -695,6 +695,18 @@ tertiary_bootstrap_copy: cp $$x $$TF; \ true; \ done +# copy wx_object to remove undef behaviour warnings + for x in lib/wx/ebin/wx_object.beam; do \ + BN=`basename $$x`; \ + TF=$(BOOTSTRAP_ROOT)/bootstrap/lib/wx/ebin/$$BN; \ + test -f $$TF && \ + test '!' -z "`find $$x -newer $$TF -print`" && \ + cp $$x $$TF; \ + test '!' -f $$TF && \ + cp $$x $$TF; \ + true; \ + done + for x in lib/test_server/include/*.hrl; do \ BN=`basename $$x`; \ TF=$(BOOTSTRAP_ROOT)/bootstrap/lib/test_server/include/$$BN; \ |