From 17c51911006a3c2166fadd17597328629a6e9ac9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Enrico=20Tr=C3=B6ger?= Date: Sat, 7 Jun 2008 11:54:40 +0200 Subject: [PATCH] Fix desktop file install, use DATADIR properly --- wscript | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/wscript b/wscript index 0a364190..ffd222f0 100644 --- a/wscript +++ b/wscript @@ -76,10 +76,10 @@ def build (bld): if bld.env ()['INTLTOOL']: obj = bld.create_obj ('intltool_in') - obj.source = 'midori.desktop.in' - obj.destvar = 'PREFIX' - obj.subdir = 'share/applications' - obj.flags = '-d' + obj.source = 'midori.desktop.in' + obj.inst_var = 'DATADIR' + obj.inst_dir = 'applications' + obj.flags = '-d' else: # FIXME: process desktop.in without intltool Params.pprint ('BLUE', "File midori.desktop not generated")