summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Brill <egore911@egore911.de>2009-01-10 15:01:49 +0100
committerChristoph Brill <egore911@egore911.de>2009-01-10 15:01:49 +0100
commitf033dfb469b9a427f69c28fd619523b4f90e4fd8 (patch)
tree4b405cec30297bb166782f2088588d8eb0ccd82e
parentb26fe1966afffbf0a8864d1fbb3cd3082b85513b (diff)
parentb54a94eaa86f4f7ee1adda2ad3b447cdd6debd94 (diff)
Merge branch 'debian-patches'
-rwxr-xr-xconfig.guess6
-rwxr-xr-xconfig.sub6
2 files changed, 12 insertions, 0 deletions
diff --git a/config.guess b/config.guess
index 413ed41..709a278 100755
--- a/config.guess
+++ b/config.guess
@@ -1,4 +1,10 @@
#! /bin/sh
+# autotools-dev hack (<ballombe@debian.org>, Wed, 14 Nov 2001 10:13:10 +0100)
+if [ -x /usr/share/misc/config.guess ]; then
+ /usr/share/misc/config.guess $*
+ exit $?
+fi
+
# Attempt to guess a canonical system name.
# Copyright (C) 1992, 93, 94, 95, 96, 1997 Free Software Foundation, Inc.
#
diff --git a/config.sub b/config.sub
index 213a6d4..076fbf8 100755
--- a/config.sub
+++ b/config.sub
@@ -1,4 +1,10 @@
#! /bin/sh
+# autotools-dev hack (<ballombe@debian.org>, Wed, 14 Nov 2001 10:13:10 +0100)
+if [ -x /usr/share/misc/config.sub ]; then
+ /usr/share/misc/config.sub $*
+ exit $?
+fi
+
# Configuration validation subroutine script, version 1.1.
# Copyright (C) 1991, 92, 93, 94, 95, 96, 1997 Free Software Foundation, Inc.
# This file is (in principle) common to ALL GNU software.