diff options
author | Steven Knight <knight@baldmt.com> | 2001-09-20 16:08:01 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2001-09-20 16:08:01 (GMT) |
commit | 16a3b3c891ae3a04dfe50c2c6473b781c8194a15 (patch) | |
tree | 880cf81fe22fb1c32550069e5c0d7824d17bdeda /doc/Conscript | |
parent | e02616efd0158ecd07b6f6cdea564e7aa648ab99 (diff) | |
download | SCons-16a3b3c891ae3a04dfe50c2c6473b781c8194a15.zip SCons-16a3b3c891ae3a04dfe50c2c6473b781c8194a15.tar.gz SCons-16a3b3c891ae3a04dfe50c2c6473b781c8194a15.tar.bz2 |
Cygwin portability fixes for Windows NT builds.
Diffstat (limited to 'doc/Conscript')
-rw-r--r-- | doc/Conscript | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/Conscript b/doc/Conscript index 8a5f15f..d8386d6 100644 --- a/doc/Conscript +++ b/doc/Conscript @@ -126,7 +126,7 @@ foreach $doc (keys %doc_dirs) { } push(@tar_deps, $html, $ps, $pdf); - push(@tar_list, "$htmldir/[A-Za-z]*", $ps, $pdf); + push(@tar_list, $htmldir, $ps, $pdf); } # @@ -135,4 +135,4 @@ foreach $doc (keys %doc_dirs) { # $env->Command($doc_tar_gz, @tar_deps, - qq(cd build/doc && tar zchvf ../dist/%>:f @tar_list)); + qq(tar zchv -f %> -C build/doc @tar_list)); |