diff options
author | David Robillard <d@drobilla.net> | 2011-11-18 02:37:16 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-11-18 02:37:16 +0000 |
commit | 9c0036c93588b7c634a6ea7544c905a7f623f808 (patch) | |
tree | 90e8cbc0f873131652bab8f4e97ef651f3c17c93 /ext.wscript | |
parent | 1180249596c09353c7e093d7c025e627cf26e0ab (diff) | |
download | lv2-9c0036c93588b7c634a6ea7544c905a7f623f808.tar.xz |
Update waf.
Diffstat (limited to 'ext.wscript')
-rw-r--r-- | ext.wscript | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ext.wscript b/ext.wscript index cbab22f..82646c0 100644 --- a/ext.wscript +++ b/ext.wscript @@ -120,6 +120,10 @@ class Dist(Scripting.Dist): fun = 'dist' cmd = 'dist' + def tar_file_name(self, node): + "Resolve symbolic links to avoid broken links in tarball." + return os.path.realpath(node.abspath()) + def archive(self): # Generate lv2extinfo.py in source tree lv2extinfo_py = open('lv2extinfo.py', 'w') |