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