summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorimp <imp@FreeBSD.org>2014-04-30 20:52:38 +0000
committerimp <imp@FreeBSD.org>2014-04-30 20:52:38 +0000
commitbf253b2c2c048b58809037d896adcc85f62646c7 (patch)
tree4f095200d86948da37beda30669d8f56afde7928
parentb633b6ce4db35420618c1a580e0b6ad7734c40cc (diff)
downloadFreeBSD-src-bf253b2c2c048b58809037d896adcc85f62646c7.zip
FreeBSD-src-bf253b2c2c048b58809037d896adcc85f62646c7.tar.gz
Fix logic error. <blush>
Submitted by: ian@
-rwxr-xr-xsys/tools/fdt/make_dtb.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/tools/fdt/make_dtb.sh b/sys/tools/fdt/make_dtb.sh
index 272c19b..7724c95 100755
--- a/sys/tools/fdt/make_dtb.sh
+++ b/sys/tools/fdt/make_dtb.sh
@@ -7,7 +7,7 @@ S=$1
dts="$2"
dtb_path=$3
-if [ -n "$dts" ]; then
+if [ -z "$dts" ]; then
echo "No DTS specified"
exit 1
fi
OpenPOWER on IntegriCloud