--- trunk/pam-config/Makefile 2012/08/30 13:54:37 1900 +++ trunk/pam-config/Makefile 2012/09/07 09:22:35 1908 @@ -3,6 +3,7 @@ sysconfdir = /etc securitydir = $(sysconfdir)/security pamdir = $(sysconfdir)/pam.d +tmpfilesdir = $(sysconfdir)/tmpfiles.d PAM_FILES = system-auth system-login system-local-login system-remote-login \ system-services other halt reboot poweroff @@ -14,8 +15,9 @@ install -d $(DESTDIR)/${sysconfdir} install -d $(DESTDIR)/${securitydir} install -d $(DESTDIR)/${pamdir} + install -d $(DESTDIR)/${tmpfilesdir} install -m 0644 environment $(DESTDIR)/${sysconfdir}/ install -m 0644 securetty $(DESTDIR)/${sysconfdir}/ install -m 0644 console.handlers $(DESTDIR)/${securitydir}/ + install -m 0644 pam.tmpfiles.d $(DESTDIR)/${tmpfilesdir}/pam.conf install -m 0644 ${PAM_FILES} $(DESTDIR)/${pamdir} -