diff options
author | obrien <obrien@FreeBSD.org> | 2002-04-23 22:16:41 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2002-04-23 22:16:41 +0000 |
commit | c8378615464233ebe8d09d2c58dbd40032d77e45 (patch) | |
tree | 3eee8dd61f995528c0a9e5d0ffb9521208186643 /usr.sbin/sade/menus.c | |
parent | 3311fa2aba4cbec458dc454de77133714a47ccfa (diff) | |
download | FreeBSD-src-c8378615464233ebe8d09d2c58dbd40032d77e45.zip FreeBSD-src-c8378615464233ebe8d09d2c58dbd40032d77e45.tar.gz |
Change the name of the 'bin' distribution to 'base'.
This is done since it contains much more than /bin, and also gets in the
way when making a combined install+fixit CD.
OK'ed by: jkh
Diffstat (limited to 'usr.sbin/sade/menus.c')
-rw-r--r-- | usr.sbin/sade/menus.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/sade/menus.c b/usr.sbin/sade/menus.c index 9ff0696..7d97484 100644 --- a/usr.sbin/sade/menus.c +++ b/usr.sbin/sade/menus.c @@ -156,7 +156,7 @@ checkDistXUser(dialogMenuItem *self) static int checkDistMinimum(dialogMenuItem *self) { - return Dists == (DIST_BIN | DIST_CRYPTO); + return Dists == (DIST_BASE | DIST_CRYPTO); } static int @@ -776,7 +776,7 @@ DMenu MenuSubDistributions = { DMENU_CHECKLIST_TYPE | DMENU_SELECTION_RETURNS, "Select the distributions you wish to install.", "Please check off the distributions you wish to install. At the\n" - "very minimum, this should be \"bin\".", + "very minimum, this should be \"base\".", NULL, NULL, { { "X Exit", "Exit this menu (returning to previous)", @@ -785,8 +785,8 @@ DMenu MenuSubDistributions = { NULL, distSetEverything, NULL, NULL, ' ', ' ', ' ' }, { "Reset", "Reset all of the below", NULL, distReset, NULL, NULL, ' ', ' ', ' ' }, - { " bin", "Binary base distribution (required)", - dmenuFlagCheck, dmenuSetFlag, NULL, &Dists, '[', 'X', ']', DIST_BIN }, + { " base", "Binary base distribution (required)", + dmenuFlagCheck, dmenuSetFlag, NULL, &Dists, '[', 'X', ']', DIST_BASE }, #ifdef __i386__ { " compat1x", "FreeBSD 1.x binary compatibility", dmenuFlagCheck, dmenuSetFlag, NULL, &Dists, '[', 'X', ']', DIST_COMPAT1X }, |