summaryrefslogtreecommitdiff
path: root/specbuilder/sb-crossgcc
diff options
context:
space:
mode:
Diffstat (limited to 'specbuilder/sb-crossgcc')
-rwxr-xr-xspecbuilder/sb-crossgcc31
1 files changed, 0 insertions, 31 deletions
diff --git a/specbuilder/sb-crossgcc b/specbuilder/sb-crossgcc
deleted file mode 100755
index b15fd4a..0000000
--- a/specbuilder/sb-crossgcc
+++ /dev/null
@@ -1,31 +0,0 @@
-#! /usr/bin/env python
-#
-# RTEMS Tools Project (http://www.rtems.org/)
-# Copyright 2010-2012 Chris Johns (chrisj@rtems.org)
-# All rights reserved.
-#
-# This file is part of the RTEMS Tools package in 'rtems-tools'.
-#
-# RTEMS Tools 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.
-#
-# RTEMS Tools 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 RTEMS Tools. If not, see <http://www.gnu.org/licenses/>.
-#
-
-import sys, os
-base = os.path.dirname(sys.argv[0])
-sys.path.insert(0, base + '/specbuilder')
-try:
- import crossgcc
- crossgcc.run()
-except ImportError:
- print >> sys.stderr, "Incorrect SpecBulder installation"
- sys.exit(1)