Skip to content

Commit

Permalink
Import Debian autotools patch: use system's if present
Browse files Browse the repository at this point in the history
  • Loading branch information
jpr5 committed Sep 6, 2017
1 parent 61ad4ae commit bdb02e6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions config.guess
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
#! /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-2017 Free Software Foundation, Inc.

Expand Down
5 changes: 5 additions & 0 deletions config.sub
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
#! /bin/sh

if [ -x /usr/share/misc/config.sub ]; then
exec /usr/share/misc/config.sub "$@"
fi

# Configuration validation subroutine script.
# Copyright 1992-2017 Free Software Foundation, Inc.

Expand Down

0 comments on commit bdb02e6

Please sign in to comment.