Blame SOURCES/setup-2.8.71-fullpath.patch

bb6ffe
diff -urNp setup-2.8.71-orig/bashrc setup-2.8.71/bashrc
bb6ffe
--- setup-2.8.71-orig/bashrc	2016-05-04 14:13:10.974376102 +0200
bb6ffe
+++ setup-2.8.71/bashrc	2016-05-04 14:15:20.723433321 +0200
bb6ffe
@@ -67,7 +67,7 @@ if ! shopt -q login_shell ; then # We're
bb6ffe
     # Current threshold for system reserved uid/gids is 200
bb6ffe
     # You could check uidgid reservation validity in
bb6ffe
     # /usr/share/doc/setup-*/uidgid file
bb6ffe
-    if [ $UID -gt 199 ] && [ "`id -gn`" = "`id -un`" ]; then
bb6ffe
+    if [ $UID -gt 199 ] && [ "`/usr/bin/id -gn`" = "`/usr/bin/id -un`" ]; then
bb6ffe
        umask 002
bb6ffe
     else
bb6ffe
        umask 022
bb6ffe
diff -urNp setup-2.8.71-orig/csh.cshrc setup-2.8.71/csh.cshrc
bb6ffe
--- setup-2.8.71-orig/csh.cshrc	2013-06-07 16:31:32.000000000 +0200
bb6ffe
+++ setup-2.8.71/csh.cshrc	2016-05-04 14:16:38.275065224 +0200
bb6ffe
@@ -7,7 +7,7 @@
bb6ffe
 # Current threshold for system reserved uid/gids is 200
bb6ffe
 # You could check uidgid reservation validity in
bb6ffe
 # /usr/share/doc/setup-*/uidgid file
bb6ffe
-if ($uid > 199 && "`id -gn`" == "`id -un`") then
bb6ffe
+if ($uid > 199 && "`/usr/bin/id -gn`" == "`/usr/bin/id -un`") then
bb6ffe
     umask 002
bb6ffe
 else
bb6ffe
     umask 022
bb6ffe
diff -urNp setup-2.8.71-orig/profile setup-2.8.71/profile
bb6ffe
--- setup-2.8.71-orig/profile	2013-06-07 16:31:32.000000000 +0200
bb6ffe
+++ setup-2.8.71/profile	2016-05-04 14:14:27.289997935 +0200
bb6ffe
@@ -25,10 +25,10 @@ pathmunge () {
bb6ffe
 if [ -x /usr/bin/id ]; then
bb6ffe
     if [ -z "$EUID" ]; then
bb6ffe
         # ksh workaround
bb6ffe
-        EUID=`id -u`
bb6ffe
-        UID=`id -ru`
bb6ffe
+        EUID=`/usr/bin/id -u`
bb6ffe
+        UID=`/usr/bin/id -ru`
bb6ffe
     fi
bb6ffe
-    USER="`id -un`"
bb6ffe
+    USER="`/usr/bin/id -un`"
bb6ffe
     LOGNAME=$USER
bb6ffe
     MAIL="/var/spool/mail/$USER"
bb6ffe
 fi
bb6ffe
@@ -56,7 +56,7 @@ export PATH USER LOGNAME MAIL HOSTNAME H
bb6ffe
 # Current threshold for system reserved uid/gids is 200
bb6ffe
 # You could check uidgid reservation validity in
bb6ffe
 # /usr/share/doc/setup-*/uidgid file
bb6ffe
-if [ $UID -gt 199 ] && [ "`id -gn`" = "`id -un`" ]; then
bb6ffe
+if [ $UID -gt 199 ] && [ "`/usr/bin/id -gn`" = "`/usr/bin/id -un`" ]; then
bb6ffe
     umask 002
bb6ffe
 else
bb6ffe
     umask 022