]> git.saurik.com Git - apt.git/blobdiff - methods/cdrom.cc
merged from the lp:~mvo/apt/libudev-dlopen branch
[apt.git] / methods / cdrom.cc
index c8ec322ee9b6b716c9a34b9f43d006334791bbb1..4bbc01c2c895372ec1297a0828e6a6934466c07a 100644 (file)
@@ -116,9 +116,9 @@ bool CDROMMethod::AutoDetectAndMount(URI Get, string &NewID)
       return false;
 
    // check if we have the mount point
       return false;
 
    // check if we have the mount point
-   const char* AptMountPoint = "/media/apt";
+   string AptMountPoint = _config->FindDir("Dir::Media::MountPath");
    if (!FileExists(AptMountPoint))
    if (!FileExists(AptMountPoint))
-      mkdir(AptMountPoint, 0750);
+      mkdir(AptMountPoint.c_str(), 0750);
 
    // now try mounting
    for (unsigned int i=0; i < v.size(); i++)
 
    // now try mounting
    for (unsigned int i=0; i < v.size(); i++)