[PATCH] gdbserver: fix the standalone build

Mircea Gherzan mircea.gherzan@intel.com
Thu Jun 27 14:58:00 GMT 2013


When direcltly invoking gdb/gdbserver/configure && make, the build will
fail because the $(host_alias) is empty and thus create-version.sh does
not get enough parameters.

2013-06-27  Mircea Gherzan  <mircea.gherzan@intel.com>

gdbserver:

	* Makefile.in (host_alias): Use @host@ instead of @host_alias@.

Signed-off-by: Mircea Gherzan <mircea.gherzan@intel.com>
---
 gdb/gdbserver/Makefile.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gdb/gdbserver/Makefile.in b/gdb/gdbserver/Makefile.in
index e5ecdd3..7a68ae3 100644
--- a/gdb/gdbserver/Makefile.in
+++ b/gdb/gdbserver/Makefile.in
@@ -18,7 +18,7 @@
 prefix = @prefix@
 exec_prefix = @exec_prefix@
 
-host_alias = @host_alias@
+host_alias = @host@
 target_alias = @target_alias@
 program_transform_name = @program_transform_name@
 bindir = @bindir@
-- 
1.7.12.4



More information about the Gdb-patches mailing list