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 <philipp@redfish-solutions.com>

git-svn-id: svn://svn.openwrt.org/openwrt/packages@32549 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2012-06-29 22:03:26 +00:00
parent 50fa87d40c
commit f22e55a270

View File

@ -5,7 +5,7 @@
fi # } fi # }
fi # } fi # }
- if test $LSOF_TMP1 -eq 1 # { - if test $LSOF_TMP1 -eq 1 # {
+ if 0 -eq 1 # { + if test 0 -eq 1 # {
then then
LSOF_CFGF="$LSOF_CFGF -DHASSELINUX" LSOF_CFGF="$LSOF_CFGF -DHASSELINUX"
LSOF_CFGL="$LSOF_CFGL -lselinux" LSOF_CFGL="$LSOF_CFGL -lselinux"