diff options
author | Tomas Mraz <tmraz@fedoraproject.org> | 2012-07-23 18:32:16 +0200 |
---|---|---|
committer | Tomas Mraz <tmraz@fedoraproject.org> | 2012-07-23 18:32:16 +0200 |
commit | 01e176ec352748487212e59723192d8dbdf53e29 (patch) | |
tree | 8363b3f33f6c909800969a9b561ec9e248fb462b /modules/pam_namespace | |
parent | 8e508f23bf5ed727649c99bbd540f7b1c2c2bd35 (diff) | |
download | pam-01e176ec352748487212e59723192d8dbdf53e29.tar.gz pam-01e176ec352748487212e59723192d8dbdf53e29.tar.bz2 pam-01e176ec352748487212e59723192d8dbdf53e29.zip |
New autotools do not create empty directories on install.
modules/pam_namespace/Makefile.am: Add install-data-local target to create
namespaceddir.
modules/pam_sepermit/Makefile.am: Add install-data-local target to create
sepermitlockdir.
Diffstat (limited to 'modules/pam_namespace')
-rw-r--r-- | modules/pam_namespace/Makefile.am | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/pam_namespace/Makefile.am b/modules/pam_namespace/Makefile.am index 586a5436..a28f1960 100644 --- a/modules/pam_namespace/Makefile.am +++ b/modules/pam_namespace/Makefile.am @@ -38,7 +38,9 @@ if HAVE_UNSHARE secureconf_DATA = namespace.conf secureconf_SCRIPTS = namespace.init - namespaced_DATA = + +install-data-local: + mkdir -p $(namespaceddir) endif |