Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/build-scripts/jhbuild/jhbuild/frontends/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'build-scripts/jhbuild/jhbuild/frontends/__init__.py')
-rw-r--r--build-scripts/jhbuild/jhbuild/frontends/__init__.py26
1 files changed, 0 insertions, 26 deletions
diff --git a/build-scripts/jhbuild/jhbuild/frontends/__init__.py b/build-scripts/jhbuild/jhbuild/frontends/__init__.py
deleted file mode 100644
index ba63ffa..0000000
--- a/build-scripts/jhbuild/jhbuild/frontends/__init__.py
+++ /dev/null
@@ -1,26 +0,0 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
-# Copyright (C) 2001-2006 James Henstridge
-#
-# __init__.py: a package holding the various build frontends
-#
-# This program 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 2 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, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
-import sys
-
-def get_buildscript(config, module_list):
- modname = 'jhbuild.frontends.%s' % config.buildscript
- __import__(modname)
- BuildScript = sys.modules[modname].BUILD_SCRIPT
- return BuildScript(config, module_list)