summaryrefslogtreecommitdiff
blob: 6805dd0eb7eab5f217dd768722a88f4aedb1c94d (plain)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
Index: lastfm-1.5.4.27091+dfsg/definitions.pro.inc
===================================================================
--- lastfm-1.5.4.27091+dfsg.orig/definitions.pro.inc
+++ lastfm-1.5.4.27091+dfsg/definitions.pro.inc
@@ -10,7 +10,7 @@ CONFIG( service ) {
     CONFIG += plugin
 
     win32: DESTDIR = $$BIN_DIR
-    else:  DESTDIR = $$BIN_DIR/services
+    else:  DESTDIR = $$BIN_DIR/lastfm_services
 
     TARGET = srv_$$TARGET
 }
@@ -19,7 +19,7 @@ CONFIG( extension ) {
     CONFIG += plugin
 
     win32: DESTDIR = $$BIN_DIR
-    else:  DESTDIR = $$BIN_DIR/extensions
+    else:  DESTDIR = $$BIN_DIR/lastfm_services/extensions
 
     TARGET = ext_$$TARGET
 }
Index: lastfm-1.5.4.27091+dfsg/src/libMoose/MooseCommon.cpp
===================================================================
--- lastfm-1.5.4.27091+dfsg.orig/src/libMoose/MooseCommon.cpp
+++ lastfm-1.5.4.27091+dfsg/src/libMoose/MooseCommon.cpp
@@ -112,7 +112,7 @@ servicePath( QString name )
         // Hack to get it working with VS2005
         dirPath = qApp->applicationDirPath();
     #else
-        dirPath = qApp->applicationDirPath() + "/services";
+        dirPath = "/usr/lib/lastfm_services";
     #endif
 
     #ifndef QT_NO_DEBUG
@@ -358,7 +358,7 @@ extensionPaths()
     // Hack to get it working with VS2005
     QString path = qApp->applicationDirPath();
   #else
-    QString path = qApp->applicationDirPath() + "/extensions";
+    QString path = "/usr/lib/lastfm_services/extensions";
   #endif
 
   #ifndef QT_NO_DEBUG