From 866afc3e78e6abdd26ff354f28bdece0863c2306 Mon Sep 17 00:00:00 2001 From: davidovski Date: Wed, 23 Feb 2022 14:26:32 +0000 Subject: made all scripts posix compliant --- repo/util/sudo.xibuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'repo/util/sudo.xibuild') diff --git a/repo/util/sudo.xibuild b/repo/util/sudo.xibuild index f1d220f..b446ce1 100644 --- a/repo/util/sudo.xibuild +++ b/repo/util/sudo.xibuild @@ -1,7 +1,7 @@ -#!/bin/bash +#!/bin/sh -MAKEDEPS=(make ) -DEPS=(glibc libldap openssl pam zlib) +MAKEDEPS="make " +DEPS="glibc libldap openssl pam zlib" PKG_VER=1.9.9 SOURCE=https://www.sudo.ws/dist/sudo-$PKG_VER.tar.gz @@ -25,7 +25,7 @@ package () { cat > $PKG_DEST/etc/sudoers.d/00-sudo << "EOF" Defaults secure_path="/usr/sbin:/usr/bin" -%wheel ALL=(ALL) ALL +%wheel ALL="ALL" ALL EOF mkdir -pv $PKG_DEST/etc/pam.d -- cgit v1.2.1