ongrep

A cleaned up fork of ngrep for OpenBSD
git clone git://git.sgregoratto.me/ongrep
Log | Files | Refs | README | LICENSE

commit bdb02e6152288e74d7693be669f5dd2c2084cd1a
parent 61ad4ae1e16cf200273a6c5e646773a64f200c92
Author: Jordan Ritter <jpr5@darkridge.com>
Date:   Wed,  6 Sep 2017 10:31:36 -0700

Import Debian autotools patch: use system's if present

Diffstat:
Mconfig.guess | 5+++++
Mconfig.sub | 5+++++
2 files changed, 10 insertions(+), 0 deletions(-)

diff --git a/config.guess b/config.guess @@ -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. diff --git a/config.sub b/config.sub @@ -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.