blob: 80babc415f8745b0317c61b89c069c5d4ef59529 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
--- utils/src/gsch2pcb.c.orig 2013-08-18 06:44:47 UTC
+++ utils/src/gsch2pcb.c
@@ -1397,13 +1397,13 @@ main (gint argc, gchar ** argv)
pcbdata_path = g_getenv ("PCBDATA"); /* do not free return value */
if (pcbdata_path != NULL) {
/* If PCBDATA is set, use the value */
- m4_pcbdir = g_strconcat (pcbdata_path, "/pcb/m4", NULL);
+ m4_pcbdir = g_strconcat (pcbdata_path, "/m4", NULL);
} else {
/* Use the default value passed in from the configure script
* instead of trying to hard code a value which is very
* likely wrong
*/
- m4_pcbdir = g_strconcat (PCBDATADIR, "/pcb/m4", NULL);
+ m4_pcbdir = g_strconcat (PCBDATADIR, "/m4", NULL);
}
default_m4_pcbdir = g_strdup (m4_pcbdir);
|