From d914c5ee15a1df82f8b4a232cc5d9a232bb35d3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=2E=C3=87a=C4=9Flar=20Onur?= Date: Sun, 4 Sep 2005 19:22:31 +0000 Subject: [PATCH] =?UTF-8?q?prefix=20de=C4=9Fil=20DESTDIR?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pisi/actionsapi/kde.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pisi/actionsapi/kde.py b/pisi/actionsapi/kde.py index a541b67e..b8b49982 100644 --- a/pisi/actionsapi/kde.py +++ b/pisi/actionsapi/kde.py @@ -60,7 +60,7 @@ def make(parameters = ''): def install(): if can_access_file('Makefile'): - args = 'make prefix=%s/%s install' % (get.installDIR(), get.kdeDIR()) + args = 'make DESTDIR=%s/%s destdir==%s/%s install' % (get.installDIR(), get.kdeDIR(), get.installDIR(), get.kdeDIR()) if system(args): raise InstallError('!!! Install failed...\n')