summaryrefslogtreecommitdiff
path: root/files.c
diff options
context:
space:
mode:
authorAaron Plattner <aplattner@nvidia.com>2008-02-13 10:20:38 -0800
committerAaron Plattner <aplattner@nvidia.com>2008-02-13 10:20:38 -0800
commitda0b9b2b01971f73d0dc072f538ef43aac0ee49d (patch)
treea697540e12ea216e0b1092006d6b1edb4ead0963 /files.c
parent914ebf772762511c27b5876267c1c06db824bff1 (diff)
1.0-96261.0-9626
Diffstat (limited to 'files.c')
-rw-r--r--files.c27
1 files changed, 13 insertions, 14 deletions
diff --git a/files.c b/files.c
index cb8a090..7ad0493 100644
--- a/files.c
+++ b/files.c
@@ -522,7 +522,6 @@ int set_destinations(Options *op, Package *p)
break;
case FILE_TYPE_XMODULE_SHARED_LIB:
- case FILE_TYPE_XMODULE_STATIC_LIB:
case FILE_TYPE_XMODULE_SYMLINK:
prefix = op->x_module_path;
dir = "";
@@ -1879,7 +1878,7 @@ int set_security_context(Options *op, const char *filename)
/*
* get_default_prefixes_and_paths() - assign the default prefixes and
- * paths depending on the architecture, distribution and the Xorg
+ * paths depending on the architecture, distribution and the X.Org
* version installed on the system.
*/
@@ -1999,11 +1998,11 @@ static int get_x_library_path(Options *op)
if (!op->utils[PKG_CONFIG]) {
if (op->modular_xorg) {
- ui_warn(op, "You appear to be using a modular Xorg "
+ ui_warn(op, "You appear to be using a modular X.Org "
"release, but nvidia-installer could not find the "
"`pkg-config` utility required to determine the "
"correct X library installation path. Please "
- "install the `pkg-config` utility and the Xorg "
+ "install the `pkg-config` utility and the X.Org "
"SDK/development package for your distribution.");
}
} else {
@@ -2017,21 +2016,21 @@ static int get_x_library_path(Options *op)
if ((ret != 0) || (dir == NULL)) {
if (op->modular_xorg) {
- ui_warn(op, "You appear to be using a modular Xorg "
+ ui_warn(op, "You appear to be using a modular X.Org "
"release, but nvidia-installer was unable to "
"determine the correct X library "
"installation path with the `pkg-config` "
- "utility. Please install the Xorg SDK/"
+ "utility. Please install the X.Org SDK/"
"development package for your distribution.");
}
} else {
if (!directory_exists(op, dir) &&
op->modular_xorg) {
- ui_warn(op, "You appear to be using a modular Xorg "
+ ui_warn(op, "You appear to be using a modular X.Org "
"release, but the X library installation "
"path reported by `pkg-config "
"--variable=libdir xorg-server` does "
- "not exist. Please check your Xorg installation.");
+ "not exist. Please check your X.Org installation.");
} else {
op->x_library_path = dir;
return TRUE;
@@ -2081,11 +2080,11 @@ static int get_x_module_path(Options *op)
if (!op->utils[PKG_CONFIG]) {
if (op->modular_xorg) {
- ui_warn(op, "You appear to be using a modular Xorg "
+ ui_warn(op, "You appear to be using a modular X.Org "
"release, but nvidia-installer could not find the "
"`pkg-config` utility required to determine the "
"correct X module installation path. Please "
- "install the `pkg-config` utility and the Xorg "
+ "install the `pkg-config` utility and the X.Org "
"SDK/development package for your distribution.");
}
} else {
@@ -2100,21 +2099,21 @@ static int get_x_module_path(Options *op)
if ((ret != 0) || (dir == NULL)) {
if (op->modular_xorg) {
- ui_warn(op, "You appear to be using a modular Xorg "
+ ui_warn(op, "You appear to be using a modular X.Org "
"release, but nvidia-installer was unable to "
"determine the correct X module "
"installation path with the `pkg-config` "
- "utility. Please install the Xorg SDK/"
+ "utility. Please install the X.Org SDK/"
"development package for your distribution.");
}
} else {
if (!directory_exists(op, dir) &&
op->modular_xorg) {
- ui_warn(op, "You appear to be using a modular Xorg "
+ ui_warn(op, "You appear to be using a modular X.Org "
"release, but the X module installation "
"path reported by `pkg-config "
"--variable=moduledir xorg-server` does "
- "not exist. Please check your Xorg installation.");
+ "not exist. Please check your X.Org installation.");
} else {
op->x_module_path = dir;
return TRUE;