1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-18 19:49:40 +00:00

- Remove the last patch. This fix makes other troubles.

Reported on:	ports@
This commit is contained in:
Sergey Matveychuk 2007-03-23 09:31:34 +00:00
parent 5a3ce7e875
commit c6bebc4f5e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=188083
2 changed files with 1 additions and 18 deletions

View File

@ -7,7 +7,7 @@
PORTNAME= portupgrade
PORTVERSION= 2.2.6
PORTREVISION= 2
PORTREVISION= 3
PORTEPOCH= 2
CATEGORIES= ports-mgmt
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}

View File

@ -1,17 +0,0 @@
Index: lib/pkgmisc.rb
===================================================================
RCS file: /cvsroot/portupgrade/pkgtools/lib/pkgmisc.rb,v
retrieving revision 1.2.2.2
diff -u -r1.2.2.2 pkgmisc.rb
--- lib/pkgmisc.rb 24 Feb 2007 12:32:11 -0000 1.2.2.2
+++ lib/pkgmisc.rb 2 Mar 2007 19:59:30 -0000
@@ -93,7 +93,8 @@
def shelljoin(*args)
args.collect { |arg|
if /[*?{}\[\]<>()~&|\\$;\'\`\"\s]/ =~ arg
- '"' + arg.gsub(/([$\\\"\`])/, "\\\\\\1") + '"'
+ a = '"' + arg.gsub(/([$\\\"\`])/, "\\\\\\1") + '"'
+ a.gsub(/\s/, '" "')
else
arg
end