]> git.pld-linux.org Git - packages/mythtv.git/blob - mythtv-sbinpath.patch
- updated to build snv fixes for stable mythtv-0.22
[packages/mythtv.git] / mythtv-sbinpath.patch
1 diff -urN mythtv-0.22rc1.orig/libs/libmythdb/lcddevice.cpp mythtv-0.22rc1/libs/libmythdb/lcddevice.cpp
2 --- mythtv-0.22rc1.orig/libs/libmythdb/lcddevice.cpp    2009-08-15 12:38:39.000000000 +0200
3 +++ mythtv-0.22rc1/libs/libmythdb/lcddevice.cpp 2009-10-18 18:57:51.000000000 +0200
4 @@ -686,7 +686,7 @@
5  bool LCD::startLCDServer(void)
6  {
7      QString LOC_ERR = QString("startLCDServer: Error: ");
8 -    QString command = GetInstallPrefix() + "/bin/mythlcdserver -v none&";
9 +    QString command = GetInstallPrefix() + "/sbin/mythlcdserver -v none&";
10  
11  #ifndef USING_MINGW
12      pid_t child = fork();
13 diff -urN mythtv-0.22rc1.orig/libs/libmythtv/jobqueue.cpp mythtv-0.22rc1/libs/libmythtv/jobqueue.cpp
14 --- mythtv-0.22rc1.orig/libs/libmythtv/jobqueue.cpp     2009-10-06 04:35:33.000000000 +0200
15 +++ mythtv-0.22rc1/libs/libmythtv/jobqueue.cpp  2009-10-18 18:55:54.000000000 +0200
16 @@ -2115,7 +2115,7 @@
17  
18      if (runningJobs[jobID].command == "mythcommflag")
19      {
20 -        path = GetInstallPrefix() + "/bin/mythcommflag";
21 +        path = GetInstallPrefix() + "/sbin/mythcommflag";
22          command = QString("%1 -j %2 -V %3")
23                            .arg(path).arg(jobID).arg(print_verbose_messages);
24      }
25 diff -urN mythtv-0.22rc1.orig/libs/libmythtv/previewgenerator.cpp mythtv-0.22rc1/libs/libmythtv/previewgenerator.cpp
26 --- mythtv-0.22rc1.orig/libs/libmythtv/previewgenerator.cpp     2009-09-29 15:49:11.000000000 +0200
27 +++ mythtv-0.22rc1/libs/libmythtv/previewgenerator.cpp  2009-10-18 18:55:54.000000000 +0200
28 @@ -224,7 +224,7 @@
29      {
30          // This is where we fork and run mythbackend to actually make preview
31          QString command = GetInstallPrefix() +
32 -                                    "/bin/mythbackend --generate-preview ";
33 +                                    "/sbin/mythbackend --generate-preview ";
34          command += QString("%1x%2")
35              .arg(outSize.width()).arg(outSize.height());
36          if (captureTime >= 0)
37 diff -urN mythtv-0.22rc1.orig/programs/mythbackend/mythbackend.pro mythtv-0.22rc1/programs/mythbackend/mythbackend.pro
38 --- mythtv-0.22rc1.orig/programs/mythbackend/mythbackend.pro    2009-07-17 23:08:07.000000000 +0200
39 +++ mythtv-0.22rc1/programs/mythbackend/mythbackend.pro 2009-10-18 18:55:54.000000000 +0200
40 @@ -7,7 +7,7 @@
41  TEMPLATE = app
42  CONFIG += thread
43  TARGET = mythbackend
44 -target.path = $${PREFIX}/bin
45 +target.path = $${PREFIX}/sbin
46  INSTALLS = target
47  
48  setting.path = $${PREFIX}/share/mythtv/
49 diff -urN mythtv-0.22rc1.orig/programs/mythcommflag/mythcommflag.pro mythtv-0.22rc1/programs/mythcommflag/mythcommflag.pro
50 --- mythtv-0.22rc1.orig/programs/mythcommflag/mythcommflag.pro  2009-08-23 07:31:52.000000000 +0200
51 +++ mythtv-0.22rc1/programs/mythcommflag/mythcommflag.pro       2009-10-18 18:55:54.000000000 +0200
52 @@ -3,7 +3,7 @@
53  
54  TEMPLATE = app
55  CONFIG += thread
56 -target.path = $${PREFIX}/bin
57 +target.path = $${PREFIX}/sbin
58  INSTALLS = target
59  
60  QMAKE_CLEAN += $(TARGET)
61 diff -urN mythtv-0.22rc1.orig/programs/mythjobqueue/mythjobqueue.pro mythtv-0.22rc1/programs/mythjobqueue/mythjobqueue.pro
62 --- mythtv-0.22rc1.orig/programs/mythjobqueue/mythjobqueue.pro  2009-07-17 23:08:07.000000000 +0200
63 +++ mythtv-0.22rc1/programs/mythjobqueue/mythjobqueue.pro       2009-10-18 18:55:54.000000000 +0200
64 @@ -6,7 +6,7 @@
65  
66  TEMPLATE = app
67  CONFIG += thread
68 -target.path = $${PREFIX}/bin
69 +target.path = $${PREFIX}/sbin
70  INSTALLS = target
71  
72  QMAKE_CLEAN += $(TARGET)
73 diff -urN mythtv-0.22rc1.orig/programs/mythlcdserver/mythlcdserver.pro mythtv-0.22rc1/programs/mythlcdserver/mythlcdserver.pro
74 --- mythtv-0.22rc1.orig/programs/mythlcdserver/mythlcdserver.pro        2009-07-17 23:08:07.000000000 +0200
75 +++ mythtv-0.22rc1/programs/mythlcdserver/mythlcdserver.pro     2009-10-18 18:55:54.000000000 +0200
76 @@ -4,7 +4,7 @@
77  TEMPLATE = app
78  CONFIG += thread
79  TARGET = mythlcdserver
80 -target.path = $${PREFIX}/bin
81 +target.path = $${PREFIX}/sbin
82  
83  INSTALLS += target
84  
This page took 0.123014 seconds and 3 git commands to generate.