Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 27 Jul 2023 06:55:17 GMT
From:      Jessica Clarke <jrtc27@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 309ec6ab282e - main - etcupdate: Remove redundant semicolons
Message-ID:  <202307270655.36R6tHdO062380@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by jrtc27:

URL: https://cgit.FreeBSD.org/src/commit/?id=309ec6ab282eb0d16250c34f24bd9525f86baef4

commit 309ec6ab282eb0d16250c34f24bd9525f86baef4
Author:     Jessica Clarke <jrtc27@FreeBSD.org>
AuthorDate: 2023-07-27 06:55:13 +0000
Commit:     Jessica Clarke <jrtc27@FreeBSD.org>
CommitDate: 2023-07-27 06:55:13 +0000

    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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202307270655.36R6tHdO062380>