summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBill Allombert <ballombe@debian.org>2009-01-09 00:52:36 +0100
committerChristoph Brill <egore911@egore911.de>2009-01-09 00:52:36 +0100
commit998886d4475ac3d06e251ef43c7a0cdc927b52b0 (patch)
treef1e52f9d8716f1fbc506c5e01586ea5c728e5b98
parentd3bd68a9f32c3c5f1f9f08dbf8171a6b241f3b5f (diff)
[PATCH] 300_config.sub.dpatch
Fix config.{sub,guess} to use autotools-dev version.
-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.