summaryrefslogtreecommitdiff
path: root/libs/taglib/wscript
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2013-12-19 12:55:52 -0500
committerPaul Davis <paul@linuxaudiosystems.com>2013-12-19 12:55:52 -0500
commit94993816cc5da618d3bab4fa9eb145db575ba1b1 (patch)
tree41a74679e7667e8b5c563e174f4f4d82dc30df6c /libs/taglib/wscript
parent298768fb73107f1aae3f75c1fc3307e7bc1aeab2 (diff)
move portable copyfile function into tools/autowaf.py and use it in both gtk2_ardour and taglib
Diffstat (limited to 'libs/taglib/wscript')
-rw-r--r--libs/taglib/wscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/taglib/wscript b/libs/taglib/wscript
index 219cbd3f08..709eb0fd90 100644
--- a/libs/taglib/wscript
+++ b/libs/taglib/wscript
@@ -103,7 +103,7 @@ def build(bld):
for h in headers:
tgt = bld.path.get_bld().make_node (os.path.join ('taglib', os.path.basename (h)))
if not os.path.exists (tgt.bldpath()):
- bld (rule = "cp ${SRC} ${TGT}",
+ bld (rule = autowaf.copyfile,
source = bld.path.make_node (os.path.join ('taglib', h)),
target = tgt)