Merge r1699613 from trunk.

* dist.sh: Remove now obsolete buildconf step and related configuration.


git-svn-id: https://svn.apache.org/repos/asf/serf/branches/1.3.x@1757825 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/dist.sh b/dist.sh
index ea68317..ccbdc56 100755
--- a/dist.sh
+++ b/dist.sh
@@ -2,16 +2,13 @@
 
 REPOS="https://svn.apache.org/repos/asf/serf"
 
-if test $# != 2; then
-  echo "USAGE: $0 TAG APR-SOURCE-PARENT"
+if test $# != 1; then
+  echo "USAGE: $0 TAG"
   exit 1
 fi
 
 version=$1
 
-# Convert to absolute path.
-srcdir=`(cd $2 ; pwd)`
-
 # provide for examining dist.sh output before creating a tag
 if test "${version}" = "trunk"; then
   url="${REPOS}/trunk"
@@ -38,12 +35,6 @@
 {
 cd "${release}"
 
-echo "Running buildconf ..."
-if ! ./buildconf --with-apr="${srcdir}/apr" --with-apr-util="${srcdir}/apr-util" ; then
-  echo "Exiting..."
-  exit 1
-fi
-
 # Remove anything that should not be in the distribution
 echo "Removing from release: dist.sh"
 rm dist.sh
@@ -79,7 +70,6 @@
 svn export --native-eol=CRLF --quiet "${url}" "${release}" || exit 1
 echo "`find ${release} -type f | wc -l` files exported"
 
-### generated files have wrong line-ending. is that an issue?
 prepare_directory
 
 if ! diff -brq "${release}.unix" "${release}"; then