File: debian_system_modules.patch

package info (click to toggle)
juce 8.0.10%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 78,772 kB
  • sloc: cpp: 526,464; ansic: 159,952; java: 3,038; javascript: 847; xml: 269; python: 224; sh: 162; makefile: 84
file content (22 lines) | stat: -rw-r--r-- 973 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
From: =?utf-8?q?IOhannes_m_zm=C3=B6lnig?= <umlaeute@debian.org>
Date: Tue, 19 Dec 2017 00:00:00 +0100
Subject: default JUCE-module path for Projucer

 On Debian we have the module-sources installed in /usr/share/juce/modules
 and should use those if possible.
Forwarded: not-needed
---
 extras/Projucer/Source/Settings/jucer_StoredSettings.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- juce.orig/extras/Projucer/Source/Settings/jucer_StoredSettings.cpp
+++ juce/extras/Projucer/Source/Settings/jucer_StoredSettings.cpp
@@ -359,7 +359,7 @@
         return (os == TargetOS::windows ? "C:\\JUCE" : "~/JUCE");
 
     if (key == Ids::defaultJuceModulePath)
-        return (os == TargetOS::windows ? "C:\\JUCE\\modules" : "~/JUCE/modules");
+        return (os == TargetOS::windows ? "C:\\JUCE\\modules" : "/usr/share/juce/modules");
 
     if (key == Ids::defaultUserModulePath)
         return (os == TargetOS::windows ? "C:\\modules" : "~/modules");