You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
568 B
16 lines
568 B
diff --git a/wscript b/wscript
|
|
index 8e73abb..5daeb97 100644
|
|
--- a/wscript
|
|
+++ b/wscript
|
|
@@ -350,6 +350,10 @@ def build(bld):
|
|
tools.find_sources_in_dirs('wafadmin/Tools', exts=['.py'])
|
|
tools.install_path = os.path.join('${PREFIX}', dir, 'Tools')
|
|
|
|
+ thirdparty = bld(features = 'py')
|
|
+ thirdparty.find_sources_in_dirs('wafadmin/3rdparty', exts=['.py'])
|
|
+ thirdparty.install_path = os.path.join('${PREFIX}', dir, '3rdparty')
|
|
+
|
|
bld.install_files('${PREFIX}/bin', 'waf', chmod=0755)
|
|
|
|
#print "waf is now installed in %s [%s, %s]" % (prefix, wafadmindir, binpath)
|