mirror of
https://github.com/opnsense/src.git
synced 2026-04-15 14:29:58 -04:00
Fix what was a pointless conditional. Use $GCC_EXEC_PREFIX if
/etc/gnats does not exist. PR: gnu/33682 Submitted by: Alan Eldridge <ports@geeksrus.net>
This commit is contained in:
parent
217bab1e77
commit
57d04f4edc
1 changed files with 1 additions and 1 deletions
|
|
@ -40,7 +40,7 @@ GNATS_ADDR=FreeBSD-gnats-submit@freebsd.org
|
|||
DATADIR=@DATADIR@
|
||||
|
||||
# If we've been moved around, try using GCC_EXEC_PREFIX.
|
||||
[ ! -d $DATADIR/gnats -a -d "$GCC_EXEC_PREFIX" ] && DATADIR=@DATADIR@
|
||||
[ ! -d $DATADIR/gnats -a -d "$GCC_EXEC_PREFIX" ] && DATADIR="$GCC_EXEC_PREFIX"
|
||||
|
||||
# The default release for this host.
|
||||
DEFAULT_RELEASE="@DEFAULT_RELEASE@"
|
||||
|
|
|
|||
Loading…
Reference in a new issue