diff options
author | Tomas Mraz <tmraz@fedoraproject.org> | 2012-08-17 14:46:40 +0200 |
---|---|---|
committer | Tomas Mraz <tmraz@fedoraproject.org> | 2012-08-17 14:46:40 +0200 |
commit | d7e6b921cd34f7ad8fc4d05065c75d13ba330896 (patch) | |
tree | 8ff4c1aa083b7a4c5a0a1af1426a248d10010ccb /modules/pam_sepermit | |
parent | d4931cce402b5957189ccd34fb283b1e8db47901 (diff) | |
download | pam-d7e6b921cd34f7ad8fc4d05065c75d13ba330896.tar.gz pam-d7e6b921cd34f7ad8fc4d05065c75d13ba330896.tar.bz2 pam-d7e6b921cd34f7ad8fc4d05065c75d13ba330896.zip |
Add missing $(DESTDIR) when making directories on install.
modules/pam_namespace/Makefile.am: Add missing $(DESTDIR) when making
$(namespaceddir) on install.
modules/pam_sepermit/Makefile.am: Add missing $(DESTDIR) when making
$(sepermitlockdir) on install.
Diffstat (limited to 'modules/pam_sepermit')
-rw-r--r-- | modules/pam_sepermit/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/pam_sepermit/Makefile.am b/modules/pam_sepermit/Makefile.am index cfc55947..bc822757 100644 --- a/modules/pam_sepermit/Makefile.am +++ b/modules/pam_sepermit/Makefile.am @@ -35,7 +35,7 @@ if HAVE_LIBSELINUX securelib_LTLIBRARIES = pam_sepermit.la install-data-local: - mkdir -p $(sepermitlockdir) + mkdir -p $(DESTDIR)$(sepermitlockdir) endif if ENABLE_REGENERATE_MAN noinst_DATA = README pam_sepermit.8 sepermit.conf.5 |