mirror of
https://git.freebsd.org/ports.git
synced 2025-06-01 19:06:28 -04:00
Finally, after a long wait, an electron port for FreeBSD lands in the portstree. A huge thanks to everyone contributed to this huge effort and to the maintainer that is willing to take the burden of the maintainership!
11 lines
464 B
Python
11 lines
464 B
Python
--- printing/cups_config_helper.py.orig 2019-03-15 06:25:50 UTC
|
|
+++ printing/cups_config_helper.py
|
|
@@ -65,7 +65,7 @@ def main():
|
|
mode = sys.argv[1]
|
|
if len(sys.argv) > 2 and sys.argv[2]:
|
|
sysroot = sys.argv[2]
|
|
- cups_config = os.path.join(sysroot, 'usr', 'bin', 'cups-config')
|
|
+ cups_config = os.path.join(sysroot, 'bin', 'cups-config')
|
|
if not os.path.exists(cups_config):
|
|
print 'cups-config not found: %s' % cups_config
|
|
return 1
|