summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Plattner <aplattner@nvidia.com>2011-07-26 17:46:44 -0700
committerAaron Plattner <aplattner@nvidia.com>2011-07-26 17:46:44 -0700
commitcd2da685918f10fc71951c60d47270862085ea90 (patch)
tree5e6fcbedae1cc479090e5751038cc36d1eb03e4d
parent0c6ff92f5cdccc70ff6f3b7a48e472faac6f9f06 (diff)
280.11280.11
-rw-r--r--command-list.c8
-rw-r--r--version.mk2
2 files changed, 8 insertions, 2 deletions
diff --git a/command-list.c b/command-list.c
index 514d86e..5964f61 100644
--- a/command-list.c
+++ b/command-list.c
@@ -832,7 +832,13 @@ static void find_conflicting_files(Options *op,
case FTS_DP:
case FTS_D:
- if (op->no_recursion)
+ if (op->no_recursion ||
+ /*
+ * stop recursing into any "nvidia-cg-toolkit"
+ * directory to prevent libGL.so.1 from being deleted
+ * (see bug 843595).
+ */
+ !strcmp("nvidia-cg-toolkit", ent->fts_name))
fts_set(fts, ent, FTS_SKIP);
break;
diff --git a/version.mk b/version.mk
index 1ec3833..e0b57d5 100644
--- a/version.mk
+++ b/version.mk
@@ -1 +1 @@
-NVIDIA_VERSION = 280.04
+NVIDIA_VERSION = 280.11