diff options
author | Mans Rullgard <mans@mansr.com> | 2012-09-07 12:50:43 +0100 |
---|---|---|
committer | Reinhard Tartler <siretart@tauware.de> | 2014-05-31 20:05:18 -0400 |
commit | afab4c422b60e83419e10ee3dd4ba7001798b3db (patch) | |
tree | 2b2900510368f8e836dee65cbd975fd1a208471c | |
parent | ecf21ab0ec798eea96f862333568336098b4610c (diff) | |
download | ffmpeg-afab4c422b60e83419e10ee3dd4ba7001798b3db.tar.gz |
configure: use utilities from /usr/xpg4/bin if it exists
Solaris defaults to non-standard utilities (grep, sed, ...) with
proper ones being in /usr/xpg4/bin. Prefixing PATH with this
directory when it exists ensures we get correct variants.
Signed-off-by: Mans Rullgard <mans@mansr.com>
-rwxr-xr-x | configure | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -54,6 +54,8 @@ if test "$E1" != 0 || test "$E2" = 0; then exit 1 fi +test -d /usr/xpg4/bin && PATH=/usr/xpg4/bin:$PATH + show_help(){ cat <<EOF Usage: configure [options] |