From cd1492e433eb713bcf93ce98294829205bee0fb5 Mon Sep 17 00:00:00 2001 From: Jeff Law Date: Thu, 9 Feb 2012 10:43:42 -0700 Subject: [PATCH] Removing unused patchfile. --- glibc-rh787662.patch | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 glibc-rh787662.patch diff --git a/glibc-rh787662.patch b/glibc-rh787662.patch deleted file mode 100644 index a252253..0000000 --- a/glibc-rh787662.patch +++ /dev/null @@ -1,32 +0,0 @@ -diff -rup a/sunrpc/rpc_main.c b/sunrpc/rpc_main.c ---- a/sunrpc/rpc_main.c 2012-01-01 05:16:32.000000000 -0700 -+++ b/sunrpc/rpc_main.c 2012-02-07 11:06:16.479796121 -0700 -@@ -77,6 +77,7 @@ static const char *cmdname; - - #define SVR4_CPP "/usr/ccs/lib/cpp" - #define SUNOS_CPP "/lib/cpp" -+#define USR_LIB_CPP "/usr/bin/cpp" - - static const char *svcclosetime = "120"; - static int cppDefined; /* explicit path for C preprocessor */ -@@ -343,12 +344,16 @@ find_cpp (void) - crash (); - } - else -- { /* try the other one */ -+ { /* try the other ones */ - CPP = SVR4_CPP; - if (stat (CPP, &buf) < 0) -- { /* can't find any cpp */ -- fputs (_ ("cannot find any C preprocessor (cpp)\n"), stdout); -- crash (); -+ { -+ CPP = USR_LIB_CPP; -+ if (stat (CPP, &buf) < 0) -+ { /* can't find any cpp */ -+ fputs (_ ("cannot find any C preprocessor (cpp)\n"), stdout); -+ crash (); -+ } - } - } - }