You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							31 lines
						
					
					
						
							1.5 KiB
						
					
					
				
			
		
		
	
	
							31 lines
						
					
					
						
							1.5 KiB
						
					
					
				# --- SDE-COPYRIGHT-NOTE-BEGIN --- | 
						|
# This copyright note is auto-generated by ./scripts/Create-CopyPatch. | 
						|
# | 
						|
# Filename: package/.../procps/dev-null.patch | 
						|
# Copyright (C) 2004 - 2006 The T2 SDE Project | 
						|
# | 
						|
# More information can be found in the files COPYING and README. | 
						|
# | 
						|
# This patch file is dual-licensed. It is available under the license the | 
						|
# patched project is licensed under, as long as it is an OpenSource license | 
						|
# as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms | 
						|
# of the GNU General Public License as published by the Free Software | 
						|
# Foundation; either version 2 of the License, or (at your option) any later | 
						|
# version. | 
						|
# --- SDE-COPYRIGHT-NOTE-END --- | 
						|
 | 
						|
-o /dev/null unlinks /dev/null and leaves a regular file. | 
						|
 | 
						|
  - Rene Rebe <[email protected]> | 
						|
 | 
						|
--- procps-3.2.5/Makefile.orig	2005-11-05 11:46:08.900000000 +0100 | 
						|
+++ procps-3.2.5/Makefile	2005-11-05 11:43:20.060000000 +0100 | 
						|
@@ -108,7 +108,7 @@ | 
						|
 # Unlike the kernel one, this check_gcc goes all the way to | 
						|
 # producing an executable. There might be a -m64 that works | 
						|
 # until you go looking for a 64-bit curses library. | 
						|
-check_gcc = $(shell if $(CC) $(ALL_CPPFLAGS) $(ALL_CFLAGS) dummy.c $(ALL_LDFLAGS) $(1) -o /dev/null $(CURSES) > /dev/null 2>&1; then echo "$(1)"; else echo "$(2)"; fi ;) | 
						|
+check_gcc = $(shell if $(CC) $(ALL_CPPFLAGS) $(ALL_CFLAGS) dummy.c $(ALL_LDFLAGS) $(1) -o - $(CURSES) > /dev/null 2>&1; then echo "$(1)"; else echo "$(2)"; fi ;) | 
						|
  | 
						|
 # Be 64-bit if at all possible. In a cross-compiling situation, one may | 
						|
 # do "make m64=-m32 lib64=lib" to produce 32-bit executables. DO NOT
 | 
						|
 |