X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=src-release.sh;h=40d0126a0a790c2b92d1695288d9c6afd3da0edc;hb=9aaf8e3a2875f719e4d5633ba222a3c04a5d0e8d;hp=dad16492bac46899bcc061e67121a4ff62475656;hpb=3e6153932030c3b6e5720f0a331e9a512f4522e6;p=deliverable%2Fbinutils-gdb.git diff --git a/src-release.sh b/src-release.sh index dad16492ba..40d0126a0a 100755 --- a/src-release.sh +++ b/src-release.sh @@ -42,7 +42,7 @@ DEVO_SUPPORT="README Makefile.in configure configure.ac \ COPYING COPYING.LIB install-sh config-ml.in symlink-tree \ mkinstalldirs ltmain.sh missing ylwrap \ libtool.m4 ltsugar.m4 ltversion.m4 ltoptions.m4 \ - Makefile.def Makefile.tpl src-release config.rpath \ + Makefile.def Makefile.tpl src-release.sh config.rpath \ ChangeLog MAINTAINERS README-maintainer-mode \ lt~obsolete.m4 ltgcc.m4 depcomp mkdep compile \ COPYING3 COPYING3.LIB" @@ -244,7 +244,8 @@ tar_compress() tool=$2 support_files=$3 compressors=$4 - ver=$(getver $tool) + verdir=${5:-$tool} + ver=$(getver $verdir) do_proto_toplev $package $ver $tool "$support_files" do_md5sum do_tar $package $ver @@ -267,7 +268,7 @@ gdb_tar_compress() } # The FSF "binutils" release includes gprof and ld. -BINUTILS_SUPPORT_DIRS="bfd gas include libiberty opcodes ld elfcpp gold gprof intl setup.com makefile.vms cpu" +BINUTILS_SUPPORT_DIRS="bfd gas include libiberty opcodes ld elfcpp gold gprof intl setup.com makefile.vms cpu zlib" binutils_release() { compressors=$1 @@ -276,7 +277,7 @@ binutils_release() tar_compress $package $tool "$BINUTILS_SUPPORT_DIRS" "$compressors" } -GAS_SUPPORT_DIRS="bfd include libiberty opcodes intl setup.com makefile.vms" +GAS_SUPPORT_DIRS="bfd include libiberty opcodes intl setup.com makefile.vms zlib" gas_release() { compressors=$1 @@ -285,7 +286,7 @@ gas_release() tar_compress $package $tool "$GAS_SUPPORT_DIRS" "$compressors" } -GDB_SUPPORT_DIRS="bfd include libiberty opcodes readline sim intl libdecnumber cpu" +GDB_SUPPORT_DIRS="bfd include libiberty opcodes readline sim intl libdecnumber cpu zlib" gdb_release() { compressors=$1 @@ -295,13 +296,13 @@ gdb_release() } # Corresponding to the CVS "sim" module. -SIM_SUPPORT_DIRS="bfd opcodes libiberty include intl gdb/version.in makefile.vms" +SIM_SUPPORT_DIRS="bfd opcodes libiberty include intl gdb/version.in gdb/common/create-version.sh makefile.vms zlib" sim_release() { compressors=$1 package=sim tool=sim - tar_compress $package $tool "$SIM_SUPPORT_DIRS" "$compressors" + tar_compress $package $tool "$SIM_SUPPORT_DIRS" "$compressors" gdb } usage()