From 88beca8fd65891e1e2c0d0553be6405bf6f0d8d2 Mon Sep 17 00:00:00 2001 From: Marius Tolzmann Date: Wed, 10 Oct 2012 12:01:09 +0200 Subject: [PATCH] buildtypes: Add compatibility buildtype configure --- Makefile | 1 + buildtypes/configure.sh.in | 30 ++++++++++++++++++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 buildtypes/configure.sh.in diff --git a/Makefile b/Makefile index 891dd26..d05e8cb 100644 --- a/Makefile +++ b/Makefile @@ -84,6 +84,7 @@ LIBRARY_SHELL+=beelib.config.sh BUILDTYPES+=autogen BUILDTYPES+=autotools BUILDTYPES+=cmake +BUILDTYPES+=configure BUILDTYPES+=jb BUILDTYPES+=make BUILDTYPES+=perl-module diff --git a/buildtypes/configure.sh.in b/buildtypes/configure.sh.in new file mode 100644 index 0000000..adec6f0 --- /dev/null +++ b/buildtypes/configure.sh.in @@ -0,0 +1,30 @@ +# +# bee magic for configure +# +# Copyright (C) 2009-2012 +# Marius Tolzmann +# Tobias Dreyer +# and other bee developers +# +# This file is part of bee. +# +# bee is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# + + +if [ "${BEE_BUILDTYPE}" = "configure" ] ; then + print_warning "BEE_BUILDTYPE=configure has been deprecated in favor of BEE_BUILDTYPE=autotools" >&2 + BEE_BUILDTYPE=autotools + load_buildmagic autotools +fi