Codebase list newlib / fd5bfbf
Patch fix wrong path to libgloss/config/default.mh Agustin Henze 10 years ago
2 changed file(s) with 30 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 From: Agustin Henze <tin@sluc.org.ar>
1 Date: Fri, 3 Jan 2014 11:55:24 -0300
2 Subject: Fix wrong path to libgloss/config/default.mh
3
4 ---
5 libgloss/arm/cpu-init/Makefile.in | 3 ++-
6 1 file changed, 2 insertions(+), 1 deletion(-)
7
8 diff --git a/libgloss/arm/cpu-init/Makefile.in b/libgloss/arm/cpu-init/Makefile.in
9 index 547c58d..d63149f 100644
10 --- a/libgloss/arm/cpu-init/Makefile.in
11 +++ b/libgloss/arm/cpu-init/Makefile.in
12 @@ -18,6 +18,7 @@ libdir = @libdir@
13 tooldir = $(exec_prefix)/$(target_alias)
14
15 objtype = @objtype@
16 +host_makefile_frag = $(srcdir)/../../config/default.mh
17
18 INSTALL = @INSTALL@
19 INSTALL_PROGRAM = @INSTALL_PROGRAM@
20 @@ -80,7 +81,7 @@ info:
21 install-info:
22 clean-info:
23
24 -Makefile: Makefile.in ../config.status @host_makefile_frag_path@
25 +Makefile: Makefile.in ../config.status ${host_makefile_frag_path}
26 $(SHELL) ../config.status --file cpu-init/Makefile
27
28 ../config.status: ../configure
0 0001-Fix-wrong-path-to-libgloss-config-default.mh.patch