* common/create-version.sh: Update comments.  Handle the case
	that TARGET_ALIAS is empty.
This commit is contained in:
Yao Qi 2013-06-27 00:12:13 +00:00
parent c8112f54cd
commit 02b1871e58
2 changed files with 18 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2013-06-27 Yao Qi <yao@codesourcery.com>
* common/create-version.sh: Update comments. Handle the case
that TARGET_ALIAS is empty.
2013-06-26 Pedro Alves <palves@redhat.com>
* infrun.c (SOLIB_IN_DYNAMIC_LINKER): Delete macro and describing

View File

@ -20,12 +20,17 @@
# Create version.c from version.in.
# Usage:
# create-version.sh PATH-TO-GDB-SRCDIR HOST_ALIAS \
# TARGET_ALIAS OUTPUT-FILE-NAME
# [TARGET_ALIAS] OUTPUT-FILE-NAME
srcdir="$1"
host_alias="$2"
target_alias="$3"
output="$4"
if [ "$#" = "4" ]; then
target_alias="$3"
output="$4"
else
output="$3"
fi
rm -f version.c-tmp $output version.tmp
date=`sed -n -e 's/^.* BFD_VERSION_DATE \(.*\)$/\1/p' $srcdir/../bfd/version.h`
@ -33,6 +38,10 @@ sed -e "s/DATE/$date/" < $srcdir/common/version.in > version.tmp
echo '#include "version.h"' >> version.c-tmp
echo 'const char version[] = "'"`sed q version.tmp`"'";' >> version.c-tmp
echo 'const char host_name[] = "'"$host_alias"'";' >> version.c-tmp
echo 'const char target_name[] = "'"$target_alias"'";' >> version.c-tmp
if [ "$#" = "4" ]; then
echo 'const char target_name[] = "'"$target_alias"'";' >> version.c-tmp
fi
mv version.c-tmp $output
rm -f version.tmp