1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
--- system-config-printer.py.orig 2008-05-23 04:57:31.000000000 -0700
+++ system-config-printer.py 2008-05-26 23:25:11.159502896 -0700
@@ -3098,7 +3098,7 @@
# Try to get make and model via SNMP
if host:
os.environ["HOST"] = host
- cmd = '/usr/lib/cups/backend/snmp "${HOST}" 2>/dev/null'
+ cmd = '%%LOCALBASE%%/libexec/cups/backend/snmp "${HOST}" 2>/dev/null'
debugprint (host + ": " + cmd)
p = os.popen(cmd, 'r')
output = p.read ().strip ()
@@ -4370,7 +4370,7 @@
os.environ["PPD"] = filename
# We want this to be in the current natural language,
# so we intentionally don't set LC_ALL=C here.
- p = os.popen ('/usr/bin/cupstestppd -rvv "$PPD"', 'r')
+ p = os.popen ('%%LOCALBASE%%/bin/cupstestppd -rvv "$PPD"', 'r')
output = p.readlines ()
p.close ()
err += reduce (lambda x, y: x + y, output)
@@ -4655,7 +4655,7 @@
(pkgs, exes) = cupshelpers.missingPackagesAndExecutables (ppd)
if len (pkgs) > 0 or len (exes) > 0:
# We didn't find a necessary executable. Complain.
- install = "/usr/bin/system-install-packages"
+ install = "/usr/bin/true"
if len (pkgs) > 0 and os.access (install, os.X_OK):
pkg = pkgs[0]
install_text = ('<span weight="bold" size="larger">' +
|