diff options
author | Andrew Clemons <andrew.clemons@gmail.com> | 2022-02-19 11:15:19 +1300 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-02-19 12:10:43 +0700 |
commit | be0a380ee29ee7070254f92fe09b092fc5195ad6 (patch) | |
tree | e6e730b047eecb408ebf91e76f7650a5ed4e3698 | |
parent | 75f8b64b2161475b8d1d74a7426f2356dde4ca93 (diff) |
system/qingy: Change package pam.d file, not fs.
sed command was trying to edit a file on the build host,
not the file generated by the build.
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r-- | system/qingy/qingy.SlackBuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/qingy/qingy.SlackBuild b/system/qingy/qingy.SlackBuild index f8271d36bbd1..aebedf32b448 100644 --- a/system/qingy/qingy.SlackBuild +++ b/system/qingy/qingy.SlackBuild @@ -112,7 +112,7 @@ make install-strip DESTDIR=$PKG # get rid of hardcoded /lib/security paths in pam config file. not needed, # and *wrong* on x86_64. -sed -i 's,/lib/security/,,' /etc/pam.d/qingy +sed -i 's,/lib/security/,,' $PKG/etc/pam.d/qingy # TODO: install-info in doinst.sh, remove it in douninst.sh. rm -f $PKG/usr/info/dir |