diff --git a/campcaster/bin/createDebianPackages.sh b/campcaster/bin/createDebianPackages.sh
index 71c5691f4..e17e5240e 100755
--- a/campcaster/bin/createDebianPackages.sh
+++ b/campcaster/bin/createDebianPackages.sh
@@ -222,8 +222,8 @@ cp -pPR $etcdir/debian $packageName
cat $etcdir/debian/control | sed -e "$replace_sed_string" \
> $packageName/debian/control
-# get rid of the remnants of the CVS system
-rm -rf `find $packageName -name CVS -type d`
+# get rid of the remnants of the subversion system
+rm -rf `find $packageName -name .svn -type d`
#-------------------------------------------------------------------------------
diff --git a/campcaster/bin/dist.sh b/campcaster/bin/dist.sh
index 054a504f9..6fcc76cda 100755
--- a/campcaster/bin/dist.sh
+++ b/campcaster/bin/dist.sh
@@ -61,7 +61,7 @@ printUsage()
echo "parameters";
echo "";
echo " -d, --directory Place the tarballs in the specified directory.";
- echo " [default: current directory]";
+ echo " [default: the parent of the current directory]";
echo " -h, --help Print this message and exit.";
echo " -v, --version The version number of the created packages.";
echo "";
@@ -103,7 +103,7 @@ if [ "x$version" == "x" ]; then
fi
if [ "x$directory" == "x" ]; then
- directory=`pwd`;
+ directory=`pwd`/..;
fi
d=`cd $directory; pwd`
diff --git a/campcaster/doc/release.html b/campcaster/doc/release.html
index 3fc96493e..bc600e522 100644
--- a/campcaster/doc/release.html
+++ b/campcaster/doc/release.html
@@ -105,7 +105,7 @@ with the release version as its single parameter:
./bin/dist.sh --version <ls-version>
campcaster-<ls-version>.tar.bz2
campcaster-libraries-<ls-version>.tar.bz2
debhelper
and
tar xfj campcaster-<ls-version>.tar.bz2 tar xfj campcaster-libraries-<ls-version>.tar.bz2 cd campcaster-<ls-version> -./bin/createDebianPackages.sh -d .. -v <ls-version> -m "Package Maintainer <maintainer@foo.bar>" -o .. +./bin/createDebianPackages.sh -d .. -v <ls-version> -o .. \ + -m "Package Maintainer <maintainer@foo.bar>" cd ..