Marcus Meissner
42eb1db8e7
update to 1.13, also fixed build with bison3 OBS-URL: https://build.opensuse.org/request/show/280024 OBS-URL: https://build.opensuse.org/package/show/network/krb5?expand=0&rev=134
19 lines
674 B
Diff
19 lines
674 B
Diff
Don't double-log (actually, don't process /etc/krb5.conf twice) just
|
|
because we built with --sysconfdir=/etc. RT#3277
|
|
|
|
---
|
|
src/include/Makefile.in | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
--- krb5-1.13.orig/src/include/Makefile.in
|
|
+++ krb5-1.13/src/include/Makefile.in
|
|
@@ -70,6 +70,8 @@ PROCESS_REPLACE = -e "s+@KRB5RCTMPDIR+$(
|
|
-e 's+@LOCALSTATEDIR+$(LOCALSTATEDIR)+' \
|
|
-e 's+@RUNSTATEDIR+$(RUNSTATEDIR)+' \
|
|
-e 's+@SYSCONFDIR+$(SYSCONFDIR)+' \
|
|
+ -e 's+:/etc/krb5.conf:/etc/krb5.conf"+:/etc/krb5.conf"+' \
|
|
+ -e 's+"/etc/krb5.conf:/etc/krb5.conf"+"/etc/krb5.conf"+' \
|
|
-e 's+@DYNOBJEXT+$(DYNOBJEXT)+' \
|
|
-e 's+@SYSCONFCONF+$(SYSCONFCONF)+'
|
|
|