077c9d
Short description: Adjust CS_PATH return value.
077c9d
Author(s): Fedora glibc team <glibc@lists.fedoraproject.org>
077c9d
Origin: PATCH
077c9d
Upstream status: not-needed
077c9d
077c9d
In Fedora we should return only /usr/bin because /bin is just a symlink
077c9d
to /usr/bin after MoveToUsr transition (which glibc has not really
077c9d
completed).
077c9d
077c9d
diff -pruN a/sysdeps/unix/confstr.h b/sysdeps/unix/confstr.h
077c9d
--- a/sysdeps/unix/confstr.h	2012-12-25 08:32:13.000000000 +0530
077c9d
+++ b/sysdeps/unix/confstr.h	2014-09-05 20:02:55.698275219 +0530
077c9d
@@ -1 +1 @@
077c9d
-#define	CS_PATH	"/bin:/usr/bin"
077c9d
+#define	CS_PATH	"/usr/bin"