Debian files should be in debian subdir, not here; besides this script just duplicates the information from README.HowToBuild and is not very useful anyhow

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43060 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2006-11-04 20:32:51 +00:00
parent 848d834ee1
commit 95d4dd10bb

View File

@ -1,27 +0,0 @@
#!/bin/sh
set -e
TEMPDIR=temp-debian
echo "creating Debian source tree ..."
rm -rf ${TEMPDIR}
mkdir ${TEMPDIR}
cd ${TEMPDIR} && ../configure --with-flavour="$1" && make debian-dist
cd .. && rm -r ${TEMPDIR}
echo "done."
echo " "
echo " ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
echo " If this is a new release version"
echo " remember to update the changelog"
echo " before building the package."
echo " "
if [ -n "$1" ]; then
echo " You will need a changelog entry"
echo " for: wxwidgets2.5-$1"
fi
echo " ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
echo " "