From 309ec6ab282eb0d16250c34f24bd9525f86baef4 Mon Sep 17 00:00:00 2001 From: Jessica Clarke Date: Thu, 27 Jul 2023 07:55:13 +0100 Subject: [PATCH] etcupdate: Remove redundant semicolons Fixes: 03e62670c33c ("etcupdate: Consolidate nobuild cases and make more robust") --- usr.sbin/etcupdate/etcupdate.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.sbin/etcupdate/etcupdate.sh b/usr.sbin/etcupdate/etcupdate.sh index 4735fa6c75eb..9966c3b0b9d5 100755 --- a/usr.sbin/etcupdate/etcupdate.sh +++ b/usr.sbin/etcupdate/etcupdate.sh @@ -216,9 +216,9 @@ build_tree() done else ( - cd $SRCDIR || exit 1; + cd $SRCDIR || exit 1 if ! [ -n "$nobuild" ]; then - export MAKEOBJDIRPREFIX=$destdir/usr/obj; + export MAKEOBJDIRPREFIX=$destdir/usr/obj if [ -n "$($make -V.ALLTARGETS:Mbuildetc)" ]; then $make buildetc || exit 1 else