discuss-gnustep
[Top][All Lists]
Advanced

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

patch for compile-all


From: David Relson
Subject: patch for compile-all
Date: Sun, 21 Jul 2002 12:10:46 -0400

Greetings,

gnustep/core includes the compile-all script which I find to be a great convenience. The script doesn't work quite right on my system (Mandrake Linux 8.2) because it uses /dev/NULL which doesn't exist. However, I do have /dev/null...

David

Below is the patch:

--- compile-all.orig    Sun Jul 21 12:07:14 2002
+++ compile-all Sun Jul 21 12:07:59 2002
@@ -26,7 +26,7 @@
   prefix="/usr/GNUstep"
 fi

-if gmake -v >/dev/NULL 2>&1
+if gmake -v >/dev/null 2>&1
 then
   MAKE=gmake
 else




reply via email to

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