1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
Description: Tweak config.guess/sub to use the autotools-dev version
Tweak config.guess/sub to use the autotools-dev version if available.
Author: Bill Allombert <ballombe@debian.org>
Origin: Debian
Forwarded: not-needed
Last-Update: 2010-01-07
Index: libjpeg9-9a/config.sub
===================================================================
--- libjpeg9-9a.orig/config.sub 2014-07-07 14:58:42.452664598 +0200
+++ libjpeg9-9a/config.sub 2014-07-07 14:59:09.933210116 +0200
@@ -1,2 +1,7 @@
#! /bin/sh
+# autotools-dev hack (<ballombe@debian.org>, Wed, 14 Nov 2001 10:13:10 +0100)
+if [ -x /usr/share/misc/config.sub ]; then
+ exec /usr/share/misc/config.sub "$@"
+fi
+
# Configuration validation subroutine script.
Index: libjpeg9-9a/config.guess
===================================================================
--- libjpeg9-9a.orig/config.guess 2014-07-07 14:58:42.452664598 +0200
+++ libjpeg9-9a/config.guess 2014-07-07 14:59:09.937210196 +0200
@@ -1,2 +1,7 @@
#! /bin/sh
+# autotools-dev hack (<ballombe@debian.org>, Wed, 14 Nov 2001 10:13:10 +0100)
+if [ -x /usr/share/misc/config.guess ]; then
+ exec /usr/share/misc/config.guess "$@"
+fi
+
# Attempt to guess a canonical system name.
|