exim/exim-4.12-tail.patch
Lars Müller 4c73601dcb Accepting request 108391 from home:lmuelle:branches:server:mail
- update to 4.77
- update to 4.77
- Package /var/log/exim owned by user and group mail; (bnc#670711).

See the package changelog for the full history.

OBS-URL: https://build.opensuse.org/request/show/108391
OBS-URL: https://build.opensuse.org/package/show/server:mail/exim?expand=0&rev=115
2012-03-07 16:07:13 +00:00

19 lines
622 B
Diff

From: Ruediger Oertel <ro at suse dot de>
Subject: fix deprecated tail call syntax (-1)
Reported-Upstream: Yes
Bugtracker: bugs.exim.org 1080
Index: scripts/Configure-config.h
===================================================================
--- scripts/Configure-config.h.orig
+++ scripts/Configure-config.h
@@ -47,7 +47,7 @@ fi
# Double-check that config.h is complete.
-if [ "`tail -1 config.h`" != "/* End of config.h */" ] ; then
+if [ "`tail -n 1 config.h`" != "/* End of config.h */" ] ; then
echo "*** config.h appears to be incomplete"
echo "*** unexpected failure in buildconfig program"
exit 1