6fe08c82e5
Update to upstream release 1.15. Successfully tested KDC with LDAP backend with one kinit on Tumbleweed x86_64 (but without selinux). Please carefully review the updated C code patches! OBS-URL: https://build.opensuse.org/request/show/443689 OBS-URL: https://build.opensuse.org/package/show/network/krb5?expand=0&rev=177
27 lines
869 B
Diff
27 lines
869 B
Diff
We want to keep these y.tab.c files around because the debuginfo points to
|
|
them. It would be more elegant at the end to use symbolic links, but that
|
|
could mess up people working in the tree on other things.
|
|
|
|
--- krb5-1.15.orig/src/kadmin/cli/Makefile.in
|
|
+++ krb5-1.15/src/kadmin/cli/Makefile.in
|
|
@@ -37,3 +37,8 @@
|
|
# CC_LINK is not meant for compilation and this use may break in the future.
|
|
datetest: getdate.c
|
|
$(CC_LINK) $(ALL_CFLAGS) -DTEST -o datetest getdate.c
|
|
+
|
|
+%.c: %.y
|
|
+ $(RM) y.tab.c $@
|
|
+ $(YACC.y) $<
|
|
+ $(CP) y.tab.c $@
|
|
--- krb5-1.15.orig/src/plugins/kdb/ldap/ldap_util/Makefile.in
|
|
+++ krb5-1.15/src/plugins/kdb/ldap/ldap_util/Makefile.in
|
|
@@ -20,7 +20,7 @@
|
|
getdate.c: $(GETDATE)
|
|
$(RM) getdate.c y.tab.c
|
|
$(YACC) $(GETDATE)
|
|
- $(MV) y.tab.c getdate.c
|
|
+ $(CP) y.tab.c getdate.c
|
|
|
|
install:
|
|
$(INSTALL_PROGRAM) $(PROG) ${DESTDIR}$(ADMIN_BINDIR)/$(PROG)
|