patches/dmalloc/5.5.2/140-shared_library.patch
author Johannes Stezenbach <js@sig21.net>
Thu Jul 29 19:30:37 2010 +0200 (2010-07-29)
branch1.7
changeset 2047 ace1d90c9b15
parent 103 b6e20abe9256
permissions -rw-r--r--
scripts: remove . from $PATH

Add CT_SanitizePath function which removes entries referring to ., /tmp
and non-existing directories from $PATH, and call it early in the
build script.

If . is in PATH, gcc-4.4.4 build breaks:

[ALL ] checking what assembler to use...
/tmp/build/targets/arm-unknown-linux-uclibcgnueabi/build/gcc-core-static/arm-unknown-linux-uclibcgnueabi/bin/as
...
[ALL ] config.status: creating as

i.e. "as" is supposed to be the arm-unknown-linux-uclibcgnueabi cross assembler,
but config.status creates a local "as" script which is calling the
host assembler.

Signed-off-by: Johannes Stezenbach <js@sig21.net>
[Yann E. MORIN: style fixes + explanations]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
(transplanted from 20dd8cef1c8adff0aa3e78ae6d7acfbc45ed5a83)
yann@103
     1
This patch makes building the shared library possible.
yann@103
     2
yann@103
     3
Copyright 2007 Yann E. MORIN <yann.morin.1998@anciens.enib.fr>
yann@103
     4
Licensed to you as dmalloc-5.5.2 is.
yann@103
     5
yann@103
     6
diff -dur dmalloc-5.5.2.orig/Makefile.in dmalloc-5.5.2/Makefile.in
yann@103
     7
--- dmalloc-5.5.2.orig/Makefile.in	2007-05-14 19:26:14.000000000 +0200
yann@103
     8
+++ dmalloc-5.5.2/Makefile.in	2007-05-18 15:54:04.000000000 +0200
yann@103
     9
@@ -257,7 +257,7 @@
yann@103
    10
 # via: http://256.com/gray/email.html
yann@103
    11
 $(LIB_SL) : $(LIBRARY)
yann@103
    12
 	rm -f $@ $@.t
yann@103
    13
-	@shlinkargs@ $(LIBRARY) $(OBJS) $(NORMAL_OBJS)
yann@103
    14
+	@shlinkargs@ $(LIBRARY)
yann@103
    15
 	mv $@.t $@
yann@103
    16
 
yann@103
    17
 $(LIBRARY) : $(OBJS) $(NORMAL_OBJS)
yann@103
    18
@@ -270,7 +270,7 @@
yann@103
    19
 
yann@103
    20
 $(LIB_TH_SL) : $(LIB_TH)
yann@103
    21
 	rm -f $@ $@.t
yann@103
    22
-	@shlinkargs@ $(LIB_TH) $(OBJS) $(THREAD_OBJS)
yann@103
    23
+	@shlinkargs@ $(LIB_TH)
yann@103
    24
 	mv $@.t $@
yann@103
    25
 
yann@103
    26
 $(LIB_CXX) : $(OBJS) $(NORMAL_OBJS) $(CXX_OBJS)
yann@103
    27
@@ -279,7 +279,7 @@
yann@103
    28
 
yann@103
    29
 $(LIB_CXX_SL) : $(LIB_CXX)
yann@103
    30
 	rm -f $@ $@.t
yann@103
    31
-	@shlinkargs@ $(LIB_CXX) $(OBJS) $(NORMAL_OBJS) $(CXX_OBJS)
yann@103
    32
+	@shlinkargs@ $(LIB_CXX)
yann@103
    33
 	mv $@.t $@
yann@103
    34
 
yann@103
    35
 $(LIB_TH_CXX) : $(OBJS) $(THREAD_OBJS) $(CXX_OBJS)
yann@103
    36
@@ -288,7 +288,7 @@
yann@103
    37
 
yann@103
    38
 $(LIB_TH_CXX_SL) : $(LIB_TH_CXX)
yann@103
    39
 	rm -f $@ $@.t
yann@103
    40
-	@shlinkargs@ $(LIB_TH_CXX) $(OBJS) $(THREAD_OBJS) $(CXX_OBJS)
yann@103
    41
+	@shlinkargs@ $(LIB_TH_CXX)
yann@103
    42
 	mv $@.t $@
yann@103
    43
 
yann@103
    44
 threadssl : $(LIB_TH_SL)