Skip to content

Commit

Permalink
buildtypes: Add compatibility buildtype configure
Browse files Browse the repository at this point in the history
  • Loading branch information
mariux committed Oct 10, 2012
1 parent ba5cf3d commit 88beca8
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ LIBRARY_SHELL+=beelib.config.sh
BUILDTYPES+=autogen
BUILDTYPES+=autotools
BUILDTYPES+=cmake
BUILDTYPES+=configure
BUILDTYPES+=jb
BUILDTYPES+=make
BUILDTYPES+=perl-module
Expand Down
30 changes: 30 additions & 0 deletions buildtypes/configure.sh.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
#
# bee magic for configure
#
# Copyright (C) 2009-2012
# Marius Tolzmann <tolzmann@molgen.mpg.de>
# Tobias Dreyer <dreyer@molgen.mpg.de>
# 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 <http://www.gnu.org/licenses/>.
#


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

0 comments on commit 88beca8

Please sign in to comment.