From 5945d1806de68de598d03343eb8a985d5b0eedfe Mon Sep 17 00:00:00 2001 From: Benoit Sigoure Date: Sat, 22 May 2010 20:42:42 -0700 Subject: [PATCH] Fix HBASE-2590. --- src/saveVersion.sh | 20 +++++++------------- 1 files changed, 7 insertions(+), 13 deletions(-) diff --git a/src/saveVersion.sh b/src/saveVersion.sh index 73778b4..58e345b 100755 --- a/src/saveVersion.sh +++ b/src/saveVersion.sh @@ -1,5 +1,8 @@ #!/bin/sh +# This file is used to generate the annotation of package info that +# records the user, url, revision and timestamp. + # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. @@ -15,12 +18,6 @@ # See the License for the specific language governing permissions and # limitations under the License. - -# This file is used to generate the annotation of package info that -# records the user, url, revision and timestamp. - -# Copied from hadoop core r740386 - unset LANG unset LC_CTYPE version=$1 @@ -39,15 +36,12 @@ else revision="Unknown" url="file://$cwd" fi -mkdir -p $outputDirectory/org/apache/hadoop/hbase -cat << EOF | \ - sed -e "s/VERSION/$version/" -e "s/USER/$user/" -e "s/DATE/$date/" \ - -e "s|URL|$url|" -e "s/REV/$revision/" \ - > $outputDirectory/org/apache/hadoop/hbase/package-info.java +mkdir -p "$outputDirectory/org/apache/hadoop/hbase" +cat >"$outputDirectory/org/apache/hadoop/hbase/package-info.java" <