From bc6425d6692deb78ceb4f934e8c7c2bd78425a8a Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Fri, 29 Jun 2012 22:03:26 +0000 Subject: [PATCH] lsof: fix broken patch The line: if 1 -eq 0 is missing the 'test' command. Alternatively, "if /bin/false" would have worked too. Signed-off-by: Philip Prindeville SVN-Revision: 32549 --- utils/lsof/patches/003-lsof_selinux.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/lsof/patches/003-lsof_selinux.patch b/utils/lsof/patches/003-lsof_selinux.patch index 7cfcb4024..c74c1e3f9 100644 --- a/utils/lsof/patches/003-lsof_selinux.patch +++ b/utils/lsof/patches/003-lsof_selinux.patch @@ -5,7 +5,7 @@ fi # } fi # } - if test $LSOF_TMP1 -eq 1 # { -+ if 0 -eq 1 # { ++ if test 0 -eq 1 # { then LSOF_CFGF="$LSOF_CFGF -DHASSELINUX" LSOF_CFGL="$LSOF_CFGL -lselinux" -- 2.30.2