Add a slash to the path pointing to hdinstall dir (#592154)
---
loader/hdinstall.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/loader/hdinstall.c b/loader/hdinstall.c
index 061a4eb..979ccf0 100644
--- a/loader/hdinstall.c
+++ b/loader/hdinstall.c
@@ -64,9 +64,9 @@ static char * setupIsoImages(char * device, char * dirName, char * location) {
if (doPwMount(device, "/mnt/isodir", "auto", "ro", NULL))
return NULL;
- checked_asprintf(&dirspec, "/mnt/isodir%.*s",
+ checked_asprintf(&dirspec, "/mnt/isodir/%.*s",
(int) (strrchr(dirName, '/') - dirName), dirName);
- checked_asprintf(&path, "/mnt/isodir%s", dirName);
+ checked_asprintf(&path, "/mnt/isodir/%s", dirName);
if (path) {
logMessage(INFO, "Path to stage2 image is %s", path);
--
1.6.6.1
_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@redhat.com
https://www.redhat.com/mailman/listinfo/anaconda-devel-list
|