diff options
author | Danny Rawlins <monster.romster@gmail.com> | 2014-01-27 18:57:53 +1100 |
---|---|---|
committer | Danny Rawlins <monster.romster@gmail.com> | 2014-01-27 18:57:53 +1100 |
commit | f451382be546bd9372b8286a031308b089c8ddf5 (patch) | |
tree | 58452b56a475fc962fa81f9438b7ef65b1e45271 /wicd | |
parent | 0677e4243ecaa186540683d6ff9c45c562d63ce7 (diff) | |
download | contrib-f451382be546bd9372b8286a031308b089c8ddf5.tar.gz contrib-f451382be546bd9372b8286a031308b089c8ddf5.tar.xz |
wicd: hard code path to python to prevent virtual python issues
Diffstat (limited to 'wicd')
-rw-r--r-- | wicd/Pkgfile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/wicd/Pkgfile b/wicd/Pkgfile index 0ea4c5346..4adfd0b83 100644 --- a/wicd/Pkgfile +++ b/wicd/Pkgfile @@ -30,15 +30,15 @@ build() { # really don't use NLS rm -r po - python setup.py configure \ + /usr/bin/python setup.py configure \ --dbus=/usr/etc/dbus-1/system.d \ --mandir=/usr/man \ --etc=/etc/wicd \ --no-install-i18n-man \ --no-install-docs - python setup.py install --root=$PKG - python -mcompileall $PKG + /usr/bin/python setup.py install --root=$PKG + /usr/bin/python -mcompileall $PKG install -m 0744 -D $SRC/wicd.rc $PKG/etc/rc.d/wicd rm -r $PKG/etc/xdg |