summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/disk.c
diff options
context:
space:
mode:
authorGuillaume Cottenceau <gc@mandriva.com>2000-12-22 14:41:43 +0000
committerGuillaume Cottenceau <gc@mandriva.com>2000-12-22 14:41:43 +0000
commitb1bca3aa6d401b53c65b7dfec75ace4aa543674d (patch)
tree76644182e463a0559a5300538b2da8c97d747dc1 /mdk-stage1/disk.c
parent85e803d061b840c3fd1434baef9e247f34e9123c (diff)
downloaddrakx-b1bca3aa6d401b53c65b7dfec75ace4aa543674d.tar
drakx-b1bca3aa6d401b53c65b7dfec75ace4aa543674d.tar.gz
drakx-b1bca3aa6d401b53c65b7dfec75ace4aa543674d.tar.bz2
drakx-b1bca3aa6d401b53c65b7dfec75ace4aa543674d.tar.xz
drakx-b1bca3aa6d401b53c65b7dfec75ace4aa543674d.zip
use a #define for Linux-Mandrake following fclara's require
Diffstat (limited to 'mdk-stage1/disk.c')
-rw-r--r--mdk-stage1/disk.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mdk-stage1/disk.c b/mdk-stage1/disk.c
index 42943e324..05501f2d3 100644
--- a/mdk-stage1/disk.c
+++ b/mdk-stage1/disk.c
@@ -84,7 +84,7 @@ static enum return_type try_with_device(char *dev_name)
return try_with_device(dev_name);
}
- results = ask_from_entries("Please enter the directory containing the Linux-Mandrake installation.",
+ results = ask_from_entries("Please enter the directory containing the " DISTRIB_NAME " Installation.",
questions_location, &answers_location, 24);
if (results != RETURN_OK) {
umount("/tmp/disk");
@@ -106,11 +106,11 @@ static enum return_type try_with_device(char *dev_name)
if (access("/tmp/image/Mandrake/mdkinst", R_OK)) {
umount("/tmp/disk");
unlink("/tmp/image");
- error_message("I can't find the Linux-Mandrake installation in the specified directory.");
+ error_message("I can't find the " DISTRIB_NAME " Installation in the specified directory.");
return try_with_device(dev_name);
}
- log_message("found the Linux-Mandrake Installation, good news!");
+ log_message("found the " DISTRIB_NAME " Installation, good news!");
if (IS_SPECIAL_STAGE2) {
if (load_ramdisk() != RETURN_OK) {