bug-gnu-utils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

patch for binutils/buccom.c


From: Robert Stanford
Subject: patch for binutils/buccom.c
Date: 09 Mar 2003 14:14:36 +1000

The following patch allows binutils-2.13-1 to be built on Debian
Unstable for Powerpc.

---cut---
diff -Naur binutils-2.13/binutils/bucomm.c
binutils-2.13/binutils/bucomm.c.mkstemp
--- binutils-2.13/binutils/bucomm.c     Sat Jun  8 17:38:30 2002
+++ binutils-2.13/binutils/bucomm.c.mkstemp     Tue Mar  4 19:14:32 2003
@@ -233,14 +233,14 @@
 #endif
       strcat (tmpname, "/");
       strcat (tmpname, template);
-      mktemp (tmpname);
+      mkstemp (tmpname);
       *slash = c;
     }
   else
     {
       tmpname = xmalloc (sizeof (template));
       strcpy (tmpname, template);
-      mktemp (tmpname);
+      mkstemp (tmpname);
     }
   return tmpname;
 }
---cut---

-- 
Robert Stanford






reply via email to

[Prev in Thread] Current Thread [Next in Thread]