diff options
author | ru <ru@FreeBSD.org> | 2003-05-17 19:16:28 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2003-05-17 19:16:28 +0000 |
commit | a44ce3058afdb7b61bb12aee29a822619ad58cd4 (patch) | |
tree | 4aa7a055cd8b9d7a8c34b6f73b6e8c648ef76c8c /release/Makefile | |
parent | b0ddc74ad22413b97fe45ecdfb74fc54023d0e51 (diff) | |
download | FreeBSD-src-a44ce3058afdb7b61bb12aee29a822619ad58cd4.zip FreeBSD-src-a44ce3058afdb7b61bb12aee29a822619ad58cd4.tar.gz |
disklabel(8) is spelled bsdlabel(8) or sunlabel(8) these days.
Also make sure bsdlabel(8) (along with the disklabel(8) compat
link) still appear on the fixit floppies of platforms that use
it natively (alpha, i386, and pc98).
Approved by: re (scottl)
Diffstat (limited to 'release/Makefile')
-rw-r--r-- | release/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/release/Makefile b/release/Makefile index ee984af..ea40d16 100644 --- a/release/Makefile +++ b/release/Makefile @@ -216,7 +216,11 @@ MFSLABEL= auto MFSSIZE= 8192 .endif +.if exists(/sbin/bsdlabel) +DISKLABEL?= bsdlabel +.else DISKLABEL?= disklabel +.endif ZIPNSPLIT= gzip --no-name -9 -c | split -b 1423k - |