From 3130114195c0c49fc3078174ca1f8a91d6339baa Mon Sep 17 00:00:00 2001 From: Gary Oberbrunner Date: Sun, 24 Apr 2011 20:55:13 +0000 Subject: Fix building of build/dist on Windows (fix tar args to force local interpretation of pathname with drive letter) --- SConstruct | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index 34ee6ae..a3ca5ed 100644 --- a/SConstruct +++ b/SConstruct @@ -1116,9 +1116,14 @@ for p in [ scons ]: Local(l) if gzip: + if platform == "win32": + # avoid problem with tar interpreting c:/ as a remote machine + tar_cargs = '-cz --force-local -f' + else: + tar_cargs = '-czf' env.Command(dist_local_tar_gz, local_targets, - "cd %s && tar czf $( ${TARGET.abspath} $) *" % build_dir_local) + "cd %s && tar %s $( ${TARGET.abspath} $) *" % (build_dir_local, tar_cargs)) unpack_targets = [os.path.join(test_local_tar_gz_dir, x) for x in rf] commands = [Delete(test_local_tar_gz_dir), -- cgit v0.12