diff options
author | Aaron Plattner <aplattner@nvidia.com> | 2011-07-26 17:46:44 -0700 |
---|---|---|
committer | Aaron Plattner <aplattner@nvidia.com> | 2011-07-26 17:46:44 -0700 |
commit | cd2da685918f10fc71951c60d47270862085ea90 (patch) | |
tree | 5e6fcbedae1cc479090e5751038cc36d1eb03e4d | |
parent | 0c6ff92f5cdccc70ff6f3b7a48e472faac6f9f06 (diff) |
280.11280.11
-rw-r--r-- | command-list.c | 8 | ||||
-rw-r--r-- | version.mk | 2 |
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; @@ -1 +1 @@ -NVIDIA_VERSION = 280.04 +NVIDIA_VERSION = 280.11 |