uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
21
pkgs/desktops/pantheon/desktop/wingpanel/indicators.patch
Normal file
21
pkgs/desktops/pantheon/desktop/wingpanel/indicators.patch
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
diff --git a/lib/IndicatorManager.vala b/lib/IndicatorManager.vala
|
||||
index a99a1ec..0ae7799 100644
|
||||
--- a/lib/IndicatorManager.vala
|
||||
+++ b/lib/IndicatorManager.vala
|
||||
@@ -115,7 +115,15 @@ public class Wingpanel.IndicatorManager : GLib.Object {
|
||||
}
|
||||
|
||||
/* load indicators */
|
||||
- var base_folder = File.new_for_path (Build.INDICATORS_DIR);
|
||||
+
|
||||
+ var indicators_path = Environment.get_variable("WINGPANEL_INDICATORS_PATH");
|
||||
+ if (indicators_path != null) {
|
||||
+ debug ("WINGPANEL_INDICATORS_PATH set to %s", indicators_path);
|
||||
+ } else {
|
||||
+ critical ("WINGPANEL_INDICATORS_PATH not set");
|
||||
+ }
|
||||
+
|
||||
+ var base_folder = File.new_for_path (indicators_path);
|
||||
|
||||
try {
|
||||
monitor = base_folder.monitor_directory (FileMonitorFlags.NONE, null);
|
||||
Loading…
Add table
Add a link
Reference in a new issue