summaryrefslogtreecommitdiff
path: root/sci-electronics/xnec2c/files/xnec2c-template.patch
blob: fa09bbdb9830d7db18ecff0ee540c97e194109f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Install template files in /usr/share/xnec2c
diff --git a/Makefile.am b/Makefile.am
index 9e8873a..6f6203e 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -62,7 +62,7 @@ install-data-local:
 	  $(install_sh_DATA) doc/$(PACKAGE).1.gz $(DESTDIR)$(mandir)/man1/; \
 	fi;
 	if test -d .$(PACKAGE)/; then \
-	  $(MKDIR_P) $(DESTDIR)$(datarootdir)/examples/$(PACKAGE)/;\
-	  cp -r .$(PACKAGE)/* $(DESTDIR)$(datarootdir)/examples/$(PACKAGE)/; \
+	  $(MKDIR_P) $(DESTDIR)$(datarootdir)/$(PACKAGE)/;\
+	  cp -r .$(PACKAGE)/* $(DESTDIR)$(datarootdir)/$(PACKAGE)/; \
 	fi;
 
diff --git a/src/main.c b/src/main.c
index 4cb541e..6883ceb 100644
--- a/src/main.c
+++ b/src/main.c
@@ -88,7 +88,7 @@ main (int argc, char *argv[])
     /* Create file path to xnec2c examples directory */
     exe_path[bytes] = '\0';
     Strlcpy( file_path, exe_path, sizeof(file_path) );
-    Strlcat( file_path, "/share/examples/xnec2c", sizeof(file_path) );
+    Strlcat( file_path, "/share/xnec2c", sizeof(file_path) );
     fprintf( stderr, "xnec2c: creating xnec2c config directory from: %s\n", file_path );
 
     /* Create system command to copy examples/xnec2c to ~/.xnec2c */