Browse Source

Fix typo in module name.
Fix installation (old path before restructure).


git-svn-id: svn://bind10.isc.org/svn/bind10/trunk@1169 e5f2f494-b856-4b98-b285-d166d9295462

Jeremy C. Reed 15 years ago
parent
commit
0c8b53cb80
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/lib/python/isc/auth/Makefile.am

+ 2 - 2
src/lib/python/isc/auth/Makefile.am

@@ -1,6 +1,6 @@
-PY_MODULES=	__init__.py master.py sqlite3ds.py
+PY_MODULES=	__init__.py master.py sqlite3_ds.py
 
 install-data-local:
 	$(mkinstalldirs) $(DESTDIR)$(pyexecdir)/isc/auth
 	@(for _foo_ in $(PY_MODULES) ; \
-		do $(INSTALL) -m 0644 $(top_srcdir)/src/lib/auth/python/isc/auth/$$_foo_ $(DESTDIR)$(pyexecdir)/isc/auth/; done)
+		do $(INSTALL) -m 0644 $(top_srcdir)/src/lib/python/isc/auth/$$_foo_ $(DESTDIR)$(pyexecdir)/isc/auth/; done)