diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2010-06-09 09:27:29 +0000 |
---|---|---|
committer | Uoti Urpala <uau@glyph.nonexistent.invalid> | 2010-11-02 04:07:27 +0200 |
commit | cfffbd5c176b7db59e4e36f6b6956e6e460110cf (patch) | |
tree | 749425507a79e08da53cbfcabcb99561dfebdad5 | |
parent | 082b6f86d377f92040c9fb9252b3f935992181c9 (diff) | |
download | mpv-cfffbd5c176b7db59e4e36f6b6956e6e460110cf.tar.bz2 mpv-cfffbd5c176b7db59e4e36f6b6956e6e460110cf.tar.xz |
cosmetics: Drop leading underscore from configuration variable.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31351 b3059339-0415-0410-9bf9-f77b7e298cf2
-rwxr-xr-x | configure | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -54,7 +54,7 @@ export LC_ALL=C # Store the configure line that was used -_configuration="$*" +configuration="$*" # Prefer these macros to full length text ! # These macros only return an error code - NO display is done @@ -1431,7 +1431,7 @@ TMPH="$I/mplayer-conf-$RANDOM-$$.h" TMPS="$I/mplayer-conf-$RANDOM-$$.S" rm -f "$TMPLOG" -echo configuration: $_configuration > "$TMPLOG" +echo configuration: $configuration > "$TMPLOG" echo >> "$TMPLOG" @@ -7823,7 +7823,7 @@ cat > config.mak << EOF # Ensure that locale settings do not interfere with shell commands. export LC_ALL = C -CONFIGURATION = $_configuration +CONFIGURATION = $configuration CHARSET = $_charset DOC_LANGS = $language_doc @@ -8133,7 +8133,7 @@ cat > $TMPH << EOF -#define CONFIGURATION "$_configuration" +#define CONFIGURATION "$configuration" #define MPLAYER_DATADIR "$_datadir" #define MPLAYER_CONFDIR "$_confdir" @@ -8557,7 +8557,7 @@ cmp -s "$TMPH" config.h || mv -f "$TMPH" config.h cat << EOF -Config files successfully generated by ./configure $_configuration ! +Config files successfully generated by ./configure $configuration ! Install prefix: $_prefix Data directory: $_datadir |