File: outdated_config.diff

package info (click to toggle)
iverilog 10.1-0.1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 9,272 kB
  • ctags: 15,443
  • sloc: cpp: 99,970; ansic: 53,046; yacc: 9,848; sh: 3,343; makefile: 1,729
file content (28 lines) | stat: -rw-r--r-- 932 bytes parent folder | download
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
Description: Patch config.{sub,guess} to call their up-to-date versions.
Author: أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@sabily.org>
Index: iverilog-10.1/config.guess
===================================================================
--- iverilog-10.1.orig/config.guess
+++ iverilog-10.1/config.guess
@@ -1,4 +1,8 @@
 #! /bin/sh
+if [ -x /usr/share/misc/config.guess ]; then
+  exec /usr/share/misc/config.guess "$@"
+fi
+
 # Attempt to guess a canonical system name.
 #   Copyright 1992-2015 Free Software Foundation, Inc.
 
Index: iverilog-10.1/config.sub
===================================================================
--- iverilog-10.1.orig/config.sub
+++ iverilog-10.1/config.sub
@@ -1,4 +1,8 @@
 #! /bin/sh
+if [ -x /usr/share/misc/config.sub ]; then
+  exec /usr/share/misc/config.sub "$@"
+fi
+
 # Configuration validation subroutine script.
 #   Copyright 1992-2015 Free Software Foundation, Inc.