summary refs log tree commit diff
path: root/pkgs/development/tools/misc/binutils/windres-locate-gcc.patch
blob: 721667c62cecc9c472a119f29646df9ec0f730d8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
diff --git a/binutils/resrc.c b/binutils/resrc.c
index a875c3a4..0411d047 100644
--- a/binutils/resrc.c
+++ b/binutils/resrc.c
@@ -521,7 +521,13 @@ read_rc_file (const char *filename, const char *preprocessor,
 
       cpp_pipe = 0;
 
-      if (dash)
+      /* Nixpkgs specific : look first at the prefixed path
+        ( there should be no gcc in the binutils folder ) */
+      if (slash && dash) {
+        cpp_pipe = look_for_default(cmd, slash + 1, dash - slash, preprocargs, filename);
+      }
+
+      if (dash && ! cpp_pipe)
 	{
 	  /* First, try looking for a prefixed gcc in the windres
 	     directory, with the same prefix as windres */