diff options
author | davidovski <david@davidovski.xyz> | 2022-03-01 21:25:54 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-03-01 21:25:54 +0000 |
commit | e8213fac46bfcb8068a883cb88b2bb1587f190f9 (patch) | |
tree | 8ec5946d18961404efb12700267e10cffffa6db7 /repo/system/pam.xibuild | |
parent | 79c82d8fc0a4f6618429a0373bb832afd105543e (diff) |
made packages work with musl
Diffstat (limited to 'repo/system/pam.xibuild')
-rw-r--r-- | repo/system/pam.xibuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/repo/system/pam.xibuild b/repo/system/pam.xibuild index 0091605..7fdccff 100644 --- a/repo/system/pam.xibuild +++ b/repo/system/pam.xibuild @@ -1,7 +1,7 @@ #!/bin/sh MAKEDEPS="make automake" -DEPS="musl libtirpc audit libxcrypt" +DEPS="musl audit libxcrypt" PKG_VER=1.5.2 SOURCE=https://github.com/linux-pam/linux-pam/releases/download/v$PKG_VER/Linux-PAM-$PKG_VER.tar.xz @@ -27,9 +27,9 @@ build () { package () { make DESTDIR=$PKG_DEST install - install -v -m755 -d $PKG_DEST/etc/pam.d + install -m755 -d $PKG_DEST/etc/pam.d - install -vdm755 $PKG_DEST/etc/pam.d + install -dm755 $PKG_DEST/etc/pam.d cat > $PKG_DEST/etc/pam.d/system-account << "EOF" # Begin /etc/pam.d/system-account |