From: Mike Frysinger Date: Fri, 10 Apr 2015 23:40:54 +0000 (-0400) Subject: sim: switch to gdb version script X-Git-Tag: gdb-7.10-release~824 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8c32ba22334b8be1c2cf412a789deeded786e1f5;p=external%2Fbinutils.git sim: switch to gdb version script Since the local create-version.sh already points directly into the gdb source tree, we might as well use the gdb script directly too. --- diff --git a/sim/common/ChangeLog b/sim/common/ChangeLog index bf7807c..00a952e 100644 --- a/sim/common/ChangeLog +++ b/sim/common/ChangeLog @@ -1,3 +1,8 @@ +2015-04-13 Mike Frysinger + + * Makefile.in (version.o): Change to using create-version.sh from gdb. + (create-version.sh): Delete. + 2015-04-06 Mike Frysinger * Make-common.in (SIM_NEW_COMMON_OBJS): Add sim-engine.o and sim-hrw.o. diff --git a/sim/common/Make-common.in b/sim/common/Make-common.in index 50db255..d42fea6 100644 --- a/sim/common/Make-common.in +++ b/sim/common/Make-common.in @@ -304,8 +304,9 @@ stamp-tvals: gentmap $(SHELL) $(srcroot)/move-if-change tmp-tmap.c targ-map.c touch stamp-tvals -version.c: Makefile $(srccom)/create-version.sh ../../bfd/version.h ../../gdb/version.in - $(SHELL) $(srccom)/create-version.sh $(srcsim) $(host_alias) $(target_alias) version.c +version.c: Makefile $(srcroot)/gdb/version.in $(srcroot)/bfd/version.h $(srcroot)/gdb/common/create-version.sh + $(SHELL) $(srcroot)/gdb/common/create-version.sh $(srcroot)/gdb \ + $(host_alias) $(target_alias) version.c # # Rules for building sim-* components. Triggered by listing the corresponding diff --git a/sim/common/create-version.sh b/sim/common/create-version.sh deleted file mode 100755 index 84a6577..0000000 --- a/sim/common/create-version.sh +++ /dev/null @@ -1,38 +0,0 @@ -#!/bin/sh - -# Copyright (C) 1989-2015 Free Software Foundation, Inc. - -# This file is part of GDB. - -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . - -# Create version.c from $1/../gdb/version.in. -# Please keep the same API as $1/../gdb/common/create-version.sh so -# they can be called the same way, from e.g. $srcroot/src-release. -# Usage: -# create-version.sh PATH-TO-SIM-SRCDIR HOST_ALIAS \ -# TARGET_ALIAS OUTPUT-FILE-NAME - -srcdir="$1" -host_alias="$2" -target_alias="$3" -output="$4" - -rm -f version.c-tmp $output version.tmp -date=`sed -n -e 's/^.* BFD_VERSION_DATE \(.*\)$/\1/p' $srcdir/../bfd/version.h` -sed -e "s/DATE/$date/" < $srcdir/../gdb/version.in > version.tmp -echo '#include "version.h"' >> version.c-tmp -echo 'const char version[] = "'"`sed q version.tmp`"'";' >> version.c-tmp -mv version.c-tmp $output -rm -f version.tmp