git: 309ec6ab282e - main - etcupdate: Remove redundant semicolons
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 27 Jul 2023 06:55:17 UTC
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