X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=maketgz;h=5aba1a3dcc3027761eae7d9336fbcdf0a9b1b713;hb=511f2a666276f74e7bea2faf9f21dae0fa33b22c;hp=b2a09be48dd8d04e5f01d6dbe90599456e0a36ec;hpb=1cd7e659b2914dcaab79de953455db5828491cdc;p=external%2Fcurl.git diff --git a/maketgz b/maketgz index b2a09be..5aba1a3 100755 --- a/maketgz +++ b/maketgz @@ -9,7 +9,7 @@ # | (__| |_| | _ <| |___ # \___|\___/|_| \_\_____| # -# Copyright (C) 1998 - 2010, Daniel Stenberg, , et al. +# Copyright (C) 1998 - 2014, Daniel Stenberg, , et al. # # This software is licensed as described in the file COPYING, which # you should have received as part of this distribution. The terms @@ -43,7 +43,7 @@ patch=`echo $libversion |cut -d. -f3 | cut -d- -f1 | sed -e "s/[^0-9]//g"` numeric=`perl -e 'printf("%02x%02x%02x\n", '"$major, $minor, $patch);"` HEADER=include/curl/curlver.h -CHEADER=src/version.h +CHEADER=src/tool_version.h # requires a date command that knows -u for UTC time zone datestamp=`date -u` @@ -91,9 +91,6 @@ findprog() return 0 } -echo "maketgz: cp lib/curl_config.h.in src/curl_config.h.in" -cp lib/curl_config.h.in src/curl_config.h.in - ############################################################################ # # Enforce a rerun of configure (updates the VERSION) @@ -126,6 +123,10 @@ make -s html echo "make pdf" make -s pdf +# And the IDE files +echo "make vc-ide" +make -s vc-ide + echo "produce CHANGES" git log --pretty=fuller --no-color --date=short --decorate=full -1000 | ./log2changes.pl > CHANGES.dist @@ -145,7 +146,7 @@ make -s dist VERSION=$version bzip2="curl-$version.tar.bz2" echo "Generating $bzip2" -gzip -dc $targz | bzip2 --best - > $bzip2 +gzip -dc $targz | bzip2 --best > $bzip2 ############################################################################ #