0e17ea22c1
The following commit removes the requirement for patches to be placed in 1000, 2000, or 3000 ID blocks depending on their upstream status. Instead upstream status is documented in the header of the patch with some semi-standard notation as described in template.patch. The patches are re-numbered and defined and applied in the same order. Verified that before and after the patch that the source tree does not change. The patch definition is resorted to match the patch application order.
16 lines
568 B
Diff
16 lines
568 B
Diff
Short description: Adjust CS_PATH return value.
|
|
Author(s): Fedora glibc team <glibc@lists.fedoraproject.org>
|
|
Origin: PATCH
|
|
Upstream status: not-needed
|
|
|
|
In Fedora we should return only /usr/bin because /bin is just a symlink
|
|
to /usr/bin after MoveToUsr transition (which glibc has not really
|
|
completed).
|
|
|
|
diff -pruN a/sysdeps/unix/confstr.h b/sysdeps/unix/confstr.h
|
|
--- a/sysdeps/unix/confstr.h 2012-12-25 08:32:13.000000000 +0530
|
|
+++ b/sysdeps/unix/confstr.h 2014-09-05 20:02:55.698275219 +0530
|
|
@@ -1 +1 @@
|
|
-#define CS_PATH "/bin:/usr/bin"
|
|
+#define CS_PATH "/usr/bin"
|