From: Vadim Zeitlin Date: Sat, 4 Nov 2006 20:32:51 +0000 (+0000) Subject: Debian files should be in debian subdir, not here; besides this script just duplicate... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/95d4dd10bb82ba0ec56027120a0f829d555a858a?ds=inline 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 --- diff --git a/make-deb b/make-deb deleted file mode 100755 index 0cbbdd3b65..0000000000 --- a/make-deb +++ /dev/null @@ -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 " " - -