diff options
author | Tor Lillqvist <tml@novell.com> | 2006-01-07 19:38:19 +0800 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 2006-01-07 19:38:19 +0800 |
commit | 28ee682e1bbfc4906d525e189ad49cc05dc89214 (patch) | |
tree | c7ff14e03a6ed3aed3d12e84f02e49d483a290fe /server.mk | |
parent | 3454590d4b0bf41dd1a7ffb2629892f2081a234e (diff) | |
download | gsoc2013-evolution-28ee682e1bbfc4906d525e189ad49cc05dc89214.tar.gz gsoc2013-evolution-28ee682e1bbfc4906d525e189ad49cc05dc89214.tar.zst gsoc2013-evolution-28ee682e1bbfc4906d525e189ad49cc05dc89214.zip |
Add whitespace before all line continuation backslashes. Fixes build on
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)
svn path=/trunk/; revision=31095
Diffstat (limited to 'server.mk')
-rw-r--r-- | server.mk | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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)|' \ |