diff options
Diffstat (limited to 'testing/foremost/foremost-makefile.patch')
-rw-r--r-- | testing/foremost/foremost-makefile.patch | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/testing/foremost/foremost-makefile.patch b/testing/foremost/foremost-makefile.patch new file mode 100644 index 0000000000..445471e011 --- /dev/null +++ b/testing/foremost/foremost-makefile.patch @@ -0,0 +1,23 @@ +--- a/Makefile 2008-10-14 02:09:13.000000000 +0200 ++++ b/Makefile 2008-10-14 18:31:38.000000000 +0200 +@@ -26,5 +26,5 @@ + # Where we get installed +-BIN = /usr/local/bin +-MAN = /usr/share/man/man8 +-CONF= /usr/local/etc ++BIN = $(DESTDIR)/usr/bin ++MAN = $(DESTDIR)/usr/share/man/man8 ++CONF= $(DESTDIR)/etc + # Setup for compiling and cross-compiling for Windows +diff -uNr foremost-1.4.orig/config.c foremost-1.4/config.c +--- a/config.c 2006-08-31 17:50:47.000000000 +0100 ++++ b/config.c 2006-08-31 17:51:09.000000000 +0100 +@@ -288,7 +288,7 @@ + #ifdef __WIN32 + set_config_file(s, "/Program Files/foremost/foremost.conf"); + #else +- set_config_file(s, "/usr/local/etc/foremost.conf"); ++ set_config_file(s, "/etc/foremost.conf"); + #endif + if ((f = fopen(get_config_file(s), "r")) == NULL) + { |