struct breakpoint: Fix indentation
[deliverable/binutils-gdb.git] / gdb / common / create-version.sh
index 0bdd0fd873f1be92bf194dce87058cd67fc2cce1..f23991dff335593b459aa9be2f45de825628b2f9 100755 (executable)
@@ -1,6 +1,6 @@
 #!/bin/sh
 
-# Copyright (C) 1989-2013 Free Software Foundation, Inc.
+# Copyright (C) 1989-2017 Free Software Foundation, Inc.
 
 # This file is part of GDB.
 
 # 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"
-
-if [ "$#" = "4" ]; then
-    target_alias="$3"
-    output="$4"
-else
-    output="$3"
-fi
+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`
@@ -38,10 +33,6 @@ sed -e "s/DATE/$date/" < $srcdir/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
-
-if [ "$#" = "4" ]; then
-    echo 'const char target_name[] = "'"$target_alias"'";' >> version.c-tmp
-fi
-
+echo 'const char target_name[] = "'"$target_alias"'";' >> version.c-tmp
 mv version.c-tmp $output
 rm -f version.tmp
This page took 0.02413 seconds and 4 git commands to generate.