From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 17111 invoked by alias); 27 Jun 2013 14:22:56 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 17098 invoked by uid 89); 27 Jun 2013 14:22:55 -0000 X-Spam-SWARE-Status: No, score=-5.7 required=5.0 tests=AWL,BAYES_00,KHOP_RCVD_UNTRUST,RCVD_IN_HOSTKARMA_W,RCVD_IN_HOSTKARMA_WL,RP_MATCHES_RCVD autolearn=ham version=3.3.1 Received: from mga11.intel.com (HELO mga11.intel.com) (192.55.52.93) by sourceware.org (qpsmtpd/0.84/v0.84-167-ge50287c) with ESMTP; Thu, 27 Jun 2013 14:22:54 +0000 Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga102.fm.intel.com with ESMTP; 27 Jun 2013 07:24:05 -0700 X-ExtLoop1: 1 Received: from irvmail001.ir.intel.com ([163.33.26.43]) by fmsmga001.fm.intel.com with ESMTP; 27 Jun 2013 07:23:38 -0700 Received: from ulslx001.iul.intel.com (ulslx001.iul.intel.com [172.28.207.63]) by irvmail001.ir.intel.com (8.14.3/8.13.6/MailSET/Hub) with ESMTP id r5REMoYc011779; Thu, 27 Jun 2013 15:22:50 +0100 Received: from ulslx001.iul.intel.com (localhost [127.0.0.1]) by ulslx001.iul.intel.com with ESMTP id r5REMo4Z031646; Thu, 27 Jun 2013 16:22:50 +0200 Received: (from mgherza1@localhost) by ulslx001.iul.intel.com with id r5REMnRc031642; Thu, 27 Jun 2013 16:22:49 +0200 From: Mircea Gherzan To: yao@codesourcery.com, tromey@redhat.com Cc: gdb-patches@sourceware.org, Mircea Gherzan Subject: [PATCH] gdbserver: fix the standalone build Date: Thu, 27 Jun 2013 14:58:00 -0000 Message-Id: <1372342963-31611-1-git-send-email-mircea.gherzan@intel.com> X-SW-Source: 2013-06/txt/msg00822.txt.bz2 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 gdbserver: * Makefile.in (host_alias): Use @host@ instead of @host_alias@. Signed-off-by: Mircea Gherzan --- 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