From: Kevin M. Rosenberg Date: Mon, 13 May 2002 22:16:52 +0000 (+0000) Subject: r2034: Debian build X-Git-Tag: v3.8.6~1076 X-Git-Url: http://git.kpe.io/?p=clsql.git;a=commitdiff_plain;h=2d2b7b94d63f3ed4abbdca3ff7a35ef3482c2dea;hp=4f48d771ad17d7e753382fe8f551e7a9ca9e7b53 r2034: Debian build --- diff --git a/clsql-mysql.system b/clsql-mysql.system index bdf5aa6..1f49b90 100644 --- a/clsql-mysql.system +++ b/clsql-mysql.system @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Feb 2002 ;;;; -;;;; $Id: clsql-mysql.system,v 1.9 2002/05/13 22:05:20 kevin Exp $ +;;;; $Id: clsql-mysql.system,v 1.10 2002/05/13 22:16:52 kevin Exp $ ;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -22,6 +22,8 @@ ;;; System definition +(mk:load-system :clsql-base) + (mk:defsystem :clsql-mysql :source-pathname "CL-LIBRARY:clsql;interfaces;mysql;" :source-extension "cl" diff --git a/make-upstream.sh b/make-upstream.sh index 568fe2a..70994b1 100755 --- a/make-upstream.sh +++ b/make-upstream.sh @@ -14,6 +14,7 @@ Creates upstream archives Options: -c Commit and tag CVS tree with current version numbers -t Tag CVS tree with current version numbers + -f Force creation of upstream archive, even if exists' -h Print this brief help EOF } @@ -25,6 +26,7 @@ while [ $# != 0 ]; do -h) usage; exit 0 ;; -c) opt_commit=1; opt_tag=1 ;; -t) opt_tag=1 ;; + -f) opt_force=1 ;; *) usage; exit 0 ;; esac shift @@ -52,7 +54,7 @@ if [ ! -z ${opt_tag} ]; then fi -if [ -f ${PACKAGE_DIR}/${DEBPKG}_${VERSION}.orig.tar.gz ]; then +if [ -z ${opt_force} -a -f ${PACKAGE_DIR}/${DEBPKG}_${VERSION}.orig.tar.gz ]; then echo "File ${PACKAGE_DIR}/${DEBPKG}_${VERSION}.orig.tar.gz already exists." echo -n "Are you sure that you want to create a new upstream archive? (y/N): " read answer