1
0
mirror of https://github.com/gryf/wicd.git synced 2025-12-19 20:38:00 +01:00

More build fixes

This commit is contained in:
Dan O'Reilly
2008-12-11 00:37:07 -05:00
parent 9c2a808577
commit 254d7c55dc
3 changed files with 6 additions and 3 deletions

View File

@@ -30,6 +30,7 @@ log = '%LOG%'
resume = '%RESUME%' resume = '%RESUME%'
suspend = '%SUSPEND%' suspend = '%SUSPEND%'
sbin = '%SBIN%' sbin = '%SBIN%'
pmutils = '%PMUTILS%'
dbus = '%DBUS%' dbus = '%DBUS%'
desktop = '%DESKTOP%' desktop = '%DESKTOP%'
backends= '%BACKENDS%' backends= '%BACKENDS%'
@@ -53,7 +54,7 @@ initfile = '%INITFILE%'
initfilename = '%INITFILENAME%' initfilename = '%INITFILENAME%'
# BOOLEANS # BOOLEANS
no_install_pmutils = %NO_INSTALL_PMUTILS%
no_install_init = %NO_INSTALL_INIT% no_install_init = %NO_INSTALL_INIT%
no_install_man = %NO_INSTALL_MAN% no_install_man = %NO_INSTALL_MAN%
no_install_kde = %NO_INSTALL_KDE% no_install_kde = %NO_INSTALL_KDE%

View File

@@ -341,7 +341,8 @@ try:
print short_language, print short_language,
data.append((wpath.translations + short_language + '/LC_MESSAGES/', ['translations/' + language + '/LC_MESSAGES/wicd.mo'])) data.append((wpath.translations + short_language + '/LC_MESSAGES/', ['translations/' + language + '/LC_MESSAGES/wicd.mo']))
print print
except: except Exception, e:
print str(e)
print '''Error setting up data array. This is normal if print '''Error setting up data array. This is normal if
python setup.py configure has not yet been run.''' python setup.py configure has not yet been run.'''

View File

@@ -30,6 +30,7 @@ log = '/var/log/wicd/'
resume = '/etc/acpi/resume.d/' resume = '/etc/acpi/resume.d/'
suspend = '/etc/acpi/suspend.d/' suspend = '/etc/acpi/suspend.d/'
sbin = '/usr/sbin/' sbin = '/usr/sbin/'
pmutils = '/usr/lib/pm-utils/sleep.d/'
dbus = '/etc/dbus-1/system.d/' dbus = '/etc/dbus-1/system.d/'
desktop = '/usr/share/applications/' desktop = '/usr/share/applications/'
backends= '/usr/lib/wicd/backends/' backends= '/usr/lib/wicd/backends/'
@@ -53,7 +54,7 @@ initfile = 'init/debian/wicd'
initfilename = 'wicd' initfilename = 'wicd'
# BOOLEANS # BOOLEANS
no_install_pmutils = False
no_install_init = False no_install_init = False
no_install_man = False no_install_man = False
no_install_kde = False no_install_kde = False