diff options
author | Tijl Coosemans <tijl@FreeBSD.org> | 2024-01-20 12:37:00 +0100 |
---|---|---|
committer | Tijl Coosemans <tijl@FreeBSD.org> | 2024-01-20 18:57:44 +0100 |
commit | 2aaa08ffa716e7a6673128b41d6098aa5323e611 (patch) | |
tree | 2ff41d02a7c941ca2fe5071a149afc696aa8a63a /Mk | |
parent | 83fc84599ecd63665f680045424cbb527e890c2a (diff) | |
download | freebsd-ports-2aaa08ffa716e7a6673128b41d6098aa5323e611.zip |
Mk/bsd.commands.mk: Fix pre-commit error about indentation
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.commands.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Mk/bsd.commands.mk b/Mk/bsd.commands.mk index 636f2f2f481e..069b5e4c6030 100644 --- a/Mk/bsd.commands.mk +++ b/Mk/bsd.commands.mk @@ -28,11 +28,11 @@ CP?= /bin/cp CPIO?= /usr/bin/cpio CUT?= /usr/bin/cut DC?= /usr/bin/dc -.if exists(/usr/bin/dialog) +. if exists(/usr/bin/dialog) DIALOG?= /usr/bin/dialog -.else +. else DIALOG?= /usr/bin/bsddialog -.endif +. endif DIALOG4PORTS?= ${LOCALBASE}/bin/portconfig DIFF?= /usr/bin/diff DIRNAME?= /usr/bin/dirname |