summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorAndreas Gruenbacher <agruen@suse.de>2004-04-21 18:52:53 +0000
committerAndreas Gruenbacher <agruen@suse.de>2004-04-21 18:52:53 +0000
commit15a8af0c8ed6a2a5a16cc81e9164e970ecef82d3 (patch)
treeff2ae8a8e9a5b6626fff5a5374818ffcdc12a257 /bin
parent3f590f388c4cdb16c12770be7b0358128b614a36 (diff)
downloadquilt-15a8af0c8ed6a2a5a16cc81e9164e970ecef82d3.tar.gz
- Replace two occurrences of \t in sed regular expressions
with bash $'\t': Some older versions of sed don't understand \t. Thanks to Randy Dunlap <rddunlap@osdl.org> for reporting this.
Diffstat (limited to 'bin')
-rw-r--r--bin/quilt.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/quilt.in b/bin/quilt.in
index 10738a1..3dcd5a3 100644
--- a/bin/quilt.in
+++ b/bin/quilt.in
@@ -28,7 +28,7 @@ usage()
quilt_commands \
| sort \
| column | column -t \
- | sed -e 's/^/\t/'
+ | sed -e $'s/^/\t/'
exit 1
}