diff options
author | obrien <obrien@FreeBSD.org> | 2002-04-18 17:46:42 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2002-04-18 17:46:42 +0000 |
commit | 4804173e16ccd0dfa5d6519d45bd91197a9b6362 (patch) | |
tree | 66de9cff00e41006079cc1b7889efa3c35ff5277 /Tools/scripts | |
parent | 50ab439f9b00caafc1f873b574091fded2906b12 (diff) | |
download | FreeBSD-ports-4804173e16ccd0dfa5d6519d45bd91197a9b6362.zip FreeBSD-ports-4804173e16ccd0dfa5d6519d45bd91197a9b6362.tar.gz |
* Change path directory separator character back to _. The problem is "::"
is it makes patch names longer, and many shells autoexpand it to "\:\:"
which makes them even longer.
* Note that this file uses ts=4.
Approved by: sobomax
Diffstat (limited to 'Tools/scripts')
-rwxr-xr-x | Tools/scripts/patchtool.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Tools/scripts/patchtool.py b/Tools/scripts/patchtool.py index be0b96e..f9008af 100755 --- a/Tools/scripts/patchtool.py +++ b/Tools/scripts/patchtool.py @@ -1,4 +1,6 @@ #!/usr/local/bin/python +# ex:ts=4 +#-*- mode: Fundamental; tab-width: 4; -*- # # patchtool.py - a tool to automate common operation with patchfiles in the # FreeBSD Ports Collection. @@ -50,7 +52,7 @@ class Vars: DEV_NULL = '/dev/null' ETC_MAKE_CONF = '/etc/make.conf' - SLASH_REPL_SYMBOL = '::' # The sysmbol to replace '/' when auto-generating + SLASH_REPL_SYMBOL = '_' # The symbol to replace '/' when auto-generating # patchnames |