Magellan Linux

Annotation of /trunk/readline/patches/readline-5.0-parallel.patch

Parent Directory Parent Directory | Revision Log Revision Log


Revision 153 - (hide annotations) (download)
Tue May 8 20:52:56 2007 UTC (17 years, 1 month ago) by niro
File size: 849 byte(s)
-import

1 niro 153 --- readline-5.0/shlib/Makefile.in.old 2003-12-10 12:02:47 -0500
2     +++ readline-5.0/shlib/Makefile.in 2005-06-27 18:06:02 -0400
3     @@ -145,7 +145,10 @@
4    
5     all: $(SHLIB_STATUS)
6    
7     -supported: $(SHARED_LIBS)
8     +# Since the libs share some objects, make sure they're built separately
9     +# and not in parallel
10     +supported:
11     + set -e; for x in $(SHARED_LIBS); do $(MAKE) $$x; done
12    
13     unsupported:
14     @echo "Your system and compiler (${host_os}-${CC}) are not supported by the"
15     --- readline-5.0/Makefile.in.old 2004-04-22 16:44:37 -0400
16     +++ readline-5.0/Makefile.in 2005-06-27 18:05:29 -0400
17     @@ -145,7 +145,10 @@
18    
19     everything: all examples
20    
21     -static: $(STATIC_LIBS)
22     +# Since the libs share some objects, make sure they're built separately
23     +# and not in parallel
24     +static:
25     + set -e; for x in $(STATIC_LIBS); do $(MAKE) $$x; done
26    
27     libreadline.a: $(OBJECTS)
28     $(RM) $@