mirror of
https://git.freebsd.org/ports.git
synced 2025-06-12 08:10:31 -04:00
13 lines
717 B
Text
13 lines
717 B
Text
Missing comma causes two strings below to be concatenated, making /usr/local/share/namebench and /usr/local/etc/namebench useless. Not great for us!
|
|
|
|
--- libnamebench/util.py.orig 2011-08-15 19:59:22.000000000 +0100
|
|
+++ libnamebench/util.py 2011-08-15 19:59:37.000000000 +0100
|
|
@@ -85,7 +85,7 @@
|
|
os.path.join(os.getcwd(), 'namebench.app', 'Contents', 'Resources'),
|
|
os.path.join(os.getcwd(), '..'),
|
|
os.path.join(sys.prefix, 'namebench'),
|
|
- '/usr/local/share/namebench'
|
|
+ '/usr/local/share/namebench',
|
|
'/usr/local/etc/namebench',
|
|
'/usr/local/namebench',
|
|
'/etc/namebench',
|