diff options
| author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2010-04-12 12:43:45 +0200 | 
|---|---|---|
| committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2010-04-12 12:43:45 +0200 | 
| commit | 6436d7c68544657e87ce6f46fcfe250c435a953c (patch) | |
| tree | a30325189c15b7626f36b78f47012d71e20d45eb /libpthread/nptl/sysdeps/pthread | |
| parent | 65f9ccdafd008abd9892dfc46fb9737ec4d964c5 (diff) | |
use user-provided host binaries
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libpthread/nptl/sysdeps/pthread')
| -rw-r--r-- | libpthread/nptl/sysdeps/pthread/Makefile.in | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/libpthread/nptl/sysdeps/pthread/Makefile.in b/libpthread/nptl/sysdeps/pthread/Makefile.in index 656f29070..2a94e4315 100644 --- a/libpthread/nptl/sysdeps/pthread/Makefile.in +++ b/libpthread/nptl/sysdeps/pthread/Makefile.in @@ -132,16 +132,16 @@ ASFLAGS-crtn.S = -g0  $(pthread_OUT)/pt-initfini.s: $(pthread_DIR)/pt-initfini.c  	$(compile.c) -	sed -n -e '/@TESTS_BEGIN/,/@TESTS_END/p' $< | \ -		awk -f $(pthread_DIR)/defs.awk > $(pthread_OUT)/defs.h +	$(do_sed) '/@TESTS_BEGIN/,/@TESTS_END/p' $< | \ +		$(AWK) -f $(pthread_DIR)/defs.awk > $(pthread_OUT)/defs.h  $(pthread_OUT)/crti.S: $(pthread_OUT)/pt-initfini.s -	sed -n -e '1,/@HEADER_ENDS/p' \ +	$(do_sed) -e '1,/@HEADER_ENDS/p' \  	       -e '/@_.*_PROLOG_BEGINS/,/@_.*_PROLOG_ENDS/p' \  	       -e '/@TRAILER_BEGINS/,$$p' $< > $@  $(pthread_OUT)/crtn.S: $(pthread_OUT)/pt-initfini.s -	sed -n -e '1,/@HEADER_ENDS/p' \ +	$(do_sed) -e '1,/@HEADER_ENDS/p' \  	       -e '/@_.*_EPILOG_BEGINS/,/@_.*_EPILOG_ENDS/p' \  	       -e '/@TRAILER_BEGINS/,$$p' $< > $@  endif | 
