summaryrefslogtreecommitdiff
path: root/files.c
diff options
context:
space:
mode:
authorAaron Plattner <aplattner@nvidia.com>2009-09-25 00:28:45 -0700
committerAaron Plattner <aplattner@nvidia.com>2009-09-25 00:28:45 -0700
commita17338ce9081f8574d920d8d39438a6844b9a300 (patch)
treef7494466eafbe24f6ac22b3c82d3aa28f571d7e9 /files.c
parentcecbfa7d6ca793d411a43c5bc2d434e89472572e (diff)
190.36190.36
Diffstat (limited to 'files.c')
-rw-r--r--files.c25
1 files changed, 22 insertions, 3 deletions
diff --git a/files.c b/files.c
index ec713e4..8305023 100644
--- a/files.c
+++ b/files.c
@@ -1925,9 +1925,6 @@ void get_default_prefixes_and_paths(Options *op)
}
#if defined(NV_X86_64)
- if (op->distro == DEBIAN && !op->compat32_chroot)
- op->compat32_chroot = DEBIAN_DEFAULT_COMPAT32_CHROOT;
-
if (!op->compat32_prefix)
op->compat32_prefix = DEFAULT_OPENGL_PREFIX;
@@ -1939,6 +1936,28 @@ void get_default_prefixes_and_paths(Options *op)
op->compat32_libdir = DEFAULT_LIBDIR;
}
}
+
+ if (op->distro == DEBIAN && !op->compat32_chroot) {
+ /*
+ * Newer versions of Debian have moved to the Ubuntu style of compat32
+ * path, so use that if it exists.
+ */
+ char *default_path = nvstrcat(op->compat32_prefix, "/"
+ UBUNTU_DEFAULT_COMPAT32_LIBDIR, NULL);
+ struct stat buf;
+ if (lstat(default_path, &buf) < 0 || S_ISLNK(buf.st_mode)) {
+ /*
+ * Path doesn't exist or is a symbolic link. Use the compat32
+ * chroot path instead.
+ */
+ op->compat32_chroot = DEBIAN_DEFAULT_COMPAT32_CHROOT;
+ } else {
+ /* <prefix>/lib32 exists, so use that */
+ op->compat32_libdir = UBUNTU_DEFAULT_COMPAT32_LIBDIR;
+ }
+ nvfree(default_path);
+ }
+
#endif
if (!op->utility_prefix)