mirror of
https://gitlab.com/mateslackbuilds/msb.git
synced 2025-01-13 08:01:08 +01:00
Added upstream patch
This commit is contained in:
parent
5d0978dde7
commit
0f27ab4848
2 changed files with 40 additions and 0 deletions
|
@ -84,6 +84,8 @@ find . \
|
||||||
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
||||||
-exec chmod 644 {} \;
|
-exec chmod 644 {} \;
|
||||||
|
|
||||||
|
patch -p1 < $CWD/pam_destdir.patch
|
||||||
|
|
||||||
CFLAGS="$SLKCFLAGS" \
|
CFLAGS="$SLKCFLAGS" \
|
||||||
CXXFLAGS="$SLKCFLAGS" \
|
CXXFLAGS="$SLKCFLAGS" \
|
||||||
./configure \
|
./configure \
|
||||||
|
|
38
testing/pam/pam_destdir.patch
Normal file
38
testing/pam/pam_destdir.patch
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
From d7e6b921cd34f7ad8fc4d05065c75d13ba330896 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Tomas Mraz <tmraz@fedoraproject.org>
|
||||||
|
Date: Fri, 17 Aug 2012 12:46:40 +0000
|
||||||
|
Subject: 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.
|
||||||
|
---
|
||||||
|
diff --git a/modules/pam_namespace/Makefile.am b/modules/pam_namespace/Makefile.am
|
||||||
|
index a28f196..ebb00f3 100644
|
||||||
|
--- a/modules/pam_namespace/Makefile.am
|
||||||
|
+++ b/modules/pam_namespace/Makefile.am
|
||||||
|
@@ -40,7 +40,7 @@ if HAVE_UNSHARE
|
||||||
|
secureconf_SCRIPTS = namespace.init
|
||||||
|
|
||||||
|
install-data-local:
|
||||||
|
- mkdir -p $(namespaceddir)
|
||||||
|
+ mkdir -p $(DESTDIR)$(namespaceddir)
|
||||||
|
endif
|
||||||
|
|
||||||
|
|
||||||
|
diff --git a/modules/pam_sepermit/Makefile.am b/modules/pam_sepermit/Makefile.am
|
||||||
|
index cfc5594..bc82275 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
|
||||||
|
--
|
||||||
|
cgit v0.9.1
|
Loading…
Reference in a new issue