]> git.ipfire.org Git - thirdparty/krb5.git/commitdiff
Fix kdcpolicy build issues 696/head
authorGreg Hudson <ghudson@mit.edu>
Mon, 28 Aug 2017 16:20:36 +0000 (12:20 -0400)
committerGreg Hudson <ghudson@mit.edu>
Tue, 29 Aug 2017 17:46:15 +0000 (13:46 -0400)
Fix mydir in plugins/kdcpolicy/test/Makefile.in so that the Makefile
can be rebuilt correctly.  Also change the name of the shared object
from "policy_test.so" to "kdcpolicy_test.so" for consistency.

ticket: 8606

src/plugins/kdcpolicy/test/Makefile.in
src/plugins/kdcpolicy/test/kdcpolicy_test.exports [moved from src/plugins/kdcpolicy/test/policy_test.exports with 100% similarity]
src/tests/t_kdcpolicy.py

index b81f1a7ce589f86c8c93d9543d43b056c7107cca..ea3484e13e64d0796300c9aa53c85e4c31add432 100644 (file)
@@ -1,7 +1,7 @@
-mydir=plugins$(S)policy$(S)test
+mydir=plugins$(S)kdcpolicy$(S)test
 BUILDTOP=$(REL)..$(S)..$(S)..
 
-LIBBASE=policy_test
+LIBBASE=kdcpolicy_test
 LIBMAJOR=0
 LIBMINOR=0
 RELDIR=../plugins/kdcpolicy/test
index b5d30846158a88071bbb1341e195a6df3928d319..5b198bb430c525b4b55d428e52be96c6f9d38331 100644 (file)
@@ -5,7 +5,7 @@ import re
 
 testpreauth = os.path.join(buildtop, 'plugins', 'preauth', 'test', 'test.so')
 testpolicy = os.path.join(buildtop, 'plugins', 'kdcpolicy', 'test',
-                          'policy_test.so')
+                          'kdcpolicy_test.so')
 krb5_conf = {'plugins': {'kdcpreauth': {'module': 'test:' + testpreauth},
                          'clpreauth': {'module': 'test:' + testpreauth},
                          'kdcpolicy': {'module': 'test:' + testpolicy}}}