diff options
| author | Alexei Batyr | 2014-02-15 17:18:30 -0500 | 
|---|---|---|
| committer | Sam Varshavchik | 2014-02-15 17:28:15 -0500 | 
| commit | 3e5ee29f8a2074f1dcb3b6d9959909a3b5ba82b0 (patch) | |
| tree | a3ff872fe17f18f50cf6644dd9f9fd3ab52592b3 | |
| parent | e7650ab352897866149c5b7765aba74ea13b4aa5 (diff) | |
| download | courier-libs-3e5ee29f8a2074f1dcb3b6d9959909a3b5ba82b0.tar.bz2 | |
Fix path.
| -rw-r--r-- | sqwebmail/ChangeLog | 4 | ||||
| -rw-r--r-- | sqwebmail/Makefile.am | 4 | 
2 files changed, 6 insertions, 2 deletions
| diff --git a/sqwebmail/ChangeLog b/sqwebmail/ChangeLog index db4b70a..097c0fb 100644 --- a/sqwebmail/ChangeLog +++ b/sqwebmail/ChangeLog @@ -1,3 +1,7 @@ +2014-02-15  "Alexei Batyr'" <lehel@pcmag.ru> + +	* Fix wrong path in Makefile. +  2014-01-12  Sam Varshavchik  <mrsam@courier-mta.com>  	* Factored out the unicode library into a separate package. diff --git a/sqwebmail/Makefile.am b/sqwebmail/Makefile.am index 49f769c..2840588 100644 --- a/sqwebmail/Makefile.am +++ b/sqwebmail/Makefile.am @@ -140,7 +140,7 @@ htmllibdir.h: config.status  	echo '#define SOCKDIR "$(localstatedir)"' >>htmllibdir.h  	echo '#define SHAREDINDEXFILE "$(sysconfdir)/shared/index"' >>htmllibdir.h  	echo '#define SQWEBPASSWD "$(pkglibexecdir)/sqwebpasswd"' >>htmllibdir.h -	if test -d $(srcdir)/../courier \ +	if test -d $(srcdir)/../../courier \  		; then \  		echo '#define HOSTNAMEFILE "$(sysconfdir)/defaultdomain"' >>htmllibdir.h \  		; echo '#define MAKEMIME "$(bindir)/makemime"' >>htmllibdir.h \ @@ -188,7 +188,7 @@ cache-reminder:  	@echo '-----------------------------------------------------------' >>sqwebmail.msg  	@echo 'You must now add the following command to your system startup script:' >>sqwebmail.msg  	@echo '' >>sqwebmail.msg -	@if test -d $(srcdir)/../courier \ +	@if test -d $(srcdir)/../../courier \  		; then \  	echo '$(sbindir)/webmaild start' >>sqwebmail.msg ; else \  	echo '$(libexecdir)/sqwebmaild.rc start' >>sqwebmail.msg ; fi | 
