aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--server.mk6
2 files changed, 9 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index e5fba9eb75..88671a548a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2006-01-07 Tor Lillqvist <tml@novell.com>
+
+ * server.mk: Add whitespace before all line continuation
+ backslashes. Fixes build on Debian-based systems. (#325574,
+ Sebastien Bacher)
+
2006-01-04 Tor Lillqvist <tml@novell.com>
* evolution-zip.in: Include also the glade files in the plugins
diff --git a/server.mk b/server.mk
index 8c2b7cc2c4..562d84bdef 100644
--- a/server.mk
+++ b/server.mk
@@ -1,7 +1,7 @@
%.server.in: %.server.in.in
- sed -e 's|\@BINDIR_IN_SERVER_FILE\@|$(bindir_in_server_file)|'\
- -e 's|\@PRIVLIBEXECDIR_IN_SERVER_FILE\@|$(privlibexecdir_in_server_file)|'\
- -e 's|\@COMPONENTDIR_IN_SERVER_FILE\@|$(componentdir_in_server_file)|'\
+ sed -e 's|\@BINDIR_IN_SERVER_FILE\@|$(bindir_in_server_file)|' \
+ -e 's|\@PRIVLIBEXECDIR_IN_SERVER_FILE\@|$(privlibexecdir_in_server_file)|' \
+ -e 's|\@COMPONENTDIR_IN_SERVER_FILE\@|$(componentdir_in_server_file)|' \
-e 's|\@VERSION\@|$(BASE_VERSION)|' \
-e 's|\@EXEEXT\@|$(EXEEXT)|' \
-e 's|\@SOEXT\@|$(SOEXT)|' \