From 972dcfcdbfe75dcfeb777150c136576cf1a71e99 Mon Sep 17 00:00:00 2001 From: Tudor Florea Date: Fri, 9 Oct 2015 22:59:03 +0200 Subject: initial commit for Enea Linux 5.0 arm Signed-off-by: Tudor Florea --- meta/recipes-extended/pam/libpam/destdirfix.patch | 24 +++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 meta/recipes-extended/pam/libpam/destdirfix.patch (limited to 'meta/recipes-extended/pam/libpam/destdirfix.patch') diff --git a/meta/recipes-extended/pam/libpam/destdirfix.patch b/meta/recipes-extended/pam/libpam/destdirfix.patch new file mode 100644 index 0000000000..52145ecb34 --- /dev/null +++ b/meta/recipes-extended/pam/libpam/destdirfix.patch @@ -0,0 +1,24 @@ +Avoid the failure: + +| mkdir -p /etc/security/namespace.d +| mkdir: cannot create directory `/etc/security/namespace.d': Permission denied + +if /etc/security/namespace.d doesn't exist. The DESTDIR prefix is missing. + +RP 2012/8/19 + +Upstream-Status: Pending + +Index: Linux-PAM-1.1.6/modules/pam_namespace/Makefile.am +=================================================================== +--- Linux-PAM-1.1.6.orig/modules/pam_namespace/Makefile.am 2012-08-15 11:08:43.000000000 +0000 ++++ Linux-PAM-1.1.6/modules/pam_namespace/Makefile.am 2012-08-19 12:25:32.311038943 +0000 +@@ -40,7 +40,7 @@ + secureconf_SCRIPTS = namespace.init + + install-data-local: +- mkdir -p $(namespaceddir) ++ mkdir -p $(DESTDIR)$(namespaceddir) + endif + + -- cgit v1.2.3-54-g00ecf