Browse Source

Simplify source_path handling, avoids some warnings with non-bash shells.

Originally committed as revision 4807 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Diego Biurrun 20 years ago
parent
commit
6942d002ba
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      configure

+ 1
- 1
configure View File

@@ -416,7 +416,7 @@ TARGET_OS=`( uname -s ) 2>&1`
esac esac


# find source path # find source path
source_path="`echo $0 | sed -e 's#/configure##'`"
source_path="`dirname $0`"
source_path_used="yes" source_path_used="yes"
if test -z "$source_path" -o "$source_path" = "." ; then if test -z "$source_path" -o "$source_path" = "." ; then
source_path=`pwd` source_path=`pwd`


Loading…
Cancel
Save