Adjust src-release.sh for sim using the gdb create-version.sh.
* sim-release.sh (tar_compress): If there's a fifth parameter, use that in the getver call instead of $tool. (sim_release): Pass gdb as fifth parameter to tar_compress. (SIM_SUPPORT_DIRS): Add gdb/common/create-version.sh.
This commit is contained in:
parent
95b57adeb7
commit
ec5b9462e0
@ -1,3 +1,12 @@
|
|||||||
|
2015-04-15 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
Hans-Peter Nilsson <hp@axis.com>
|
||||||
|
|
||||||
|
Adjust src-release.sh for sim using the gdb create-version.sh.
|
||||||
|
* sim-release.sh (tar_compress): If there's a fifth parameter,
|
||||||
|
use that in the getver call instead of $tool.
|
||||||
|
(sim_release): Pass gdb as fifth parameter to tar_compress.
|
||||||
|
(SIM_SUPPORT_DIRS): Add gdb/common/create-version.sh.
|
||||||
|
|
||||||
2015-04-01 H.J. Lu <hongjiu.lu@intel.com>
|
2015-04-01 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
* configure.ac: Add --with-system-zlib.
|
* configure.ac: Add --with-system-zlib.
|
||||||
|
@ -244,7 +244,8 @@ tar_compress()
|
|||||||
tool=$2
|
tool=$2
|
||||||
support_files=$3
|
support_files=$3
|
||||||
compressors=$4
|
compressors=$4
|
||||||
ver=$(getver $tool)
|
verdir=${5:-$tool}
|
||||||
|
ver=$(getver $verdir)
|
||||||
do_proto_toplev $package $ver $tool "$support_files"
|
do_proto_toplev $package $ver $tool "$support_files"
|
||||||
do_md5sum
|
do_md5sum
|
||||||
do_tar $package $ver
|
do_tar $package $ver
|
||||||
@ -295,13 +296,13 @@ gdb_release()
|
|||||||
}
|
}
|
||||||
|
|
||||||
# Corresponding to the CVS "sim" module.
|
# Corresponding to the CVS "sim" module.
|
||||||
SIM_SUPPORT_DIRS="bfd opcodes libiberty include intl gdb/version.in makefile.vms zlib"
|
SIM_SUPPORT_DIRS="bfd opcodes libiberty include intl gdb/version.in gdb/common/create-version.sh makefile.vms zlib"
|
||||||
sim_release()
|
sim_release()
|
||||||
{
|
{
|
||||||
compressors=$1
|
compressors=$1
|
||||||
package=sim
|
package=sim
|
||||||
tool=sim
|
tool=sim
|
||||||
tar_compress $package $tool "$SIM_SUPPORT_DIRS" "$compressors"
|
tar_compress $package $tool "$SIM_SUPPORT_DIRS" "$compressors" gdb
|
||||||
}
|
}
|
||||||
|
|
||||||
usage()
|
usage()
|
||||||
|
Loading…
Reference in New Issue
Block a user