pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

nss-pam-ldapd: don't use ${RM} as that expands to nothing...



Module Name:	pkgsrc-wip
Committed By:	Havard Eidnes <he%NetBSD.org@localhost>
Pushed By:	he
Date:		Tue Aug 16 14:24:17 2022 +0200
Changeset:	88636f54f3b93abf7557be5dc00cb1e6030851c6

Modified Files:
	nss-pam-ldapd/DEINSTALL.NetBSD

Log Message:
nss-pam-ldapd: don't use ${RM} as that expands to nothing...

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=88636f54f3b93abf7557be5dc00cb1e6030851c6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 nss-pam-ldapd/DEINSTALL.NetBSD | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diffs:
diff --git a/nss-pam-ldapd/DEINSTALL.NetBSD b/nss-pam-ldapd/DEINSTALL.NetBSD
index d39b2925c0..64fa5ed80b 100644
--- a/nss-pam-ldapd/DEINSTALL.NetBSD
+++ b/nss-pam-ldapd/DEINSTALL.NetBSD
@@ -2,7 +2,7 @@
 
 case ${STAGE} in
 	POST-DEINSTALL)
-		${RM} -f /usr/lib/nss_ldap.so.0
-                ${RM} -f /usr/lib/security/pam_ldap.so
+		rm -f /usr/lib/nss_ldap.so.0
+                rm -f /usr/lib/security/pam_ldap.so
 		;;
 esac


Home | Main Index | Thread Index | Old Index