Commit 2b64aa25 authored by Faustino E. Osuna's avatar Faustino E. Osuna Committed by Jean-Baptiste Kempf

Cosmetic: fix typos, whitespace, and debug calls

- Remove white space and debug statement.
- Fix typo in comments
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 14b6dc70
...@@ -13,14 +13,13 @@ if test "$ACTION" = "clean"; then ...@@ -13,14 +13,13 @@ if test "$ACTION" = "clean"; then
exit 0 exit 0
fi fi
# Contruct the vlc_build_dir # Construct the vlc_build_dir
mkdir -p $VLC_BUILD_DIR mkdir -p $VLC_BUILD_DIR
cd $VLC_BUILD_DIR cd $VLC_BUILD_DIR
# Contruct the argument list # Construct the argument list
echo "Building for $ARCHS with sdk=\"$SDKROOT\" in $VLC_BUILD_DIR" echo "Building for $ARCHS with sdk=\"$SDKROOT\" in $VLC_BUILD_DIR"
args="--disable-nls $args" args="--disable-nls $args"
# Mac OS X related options # Mac OS X related options
...@@ -79,13 +78,12 @@ for arch in $ARCHS; do ...@@ -79,13 +78,12 @@ for arch in $ARCHS; do
input="$top_srcdir/configure" input="$top_srcdir/configure"
output="$arch/Makefile" output="$arch/Makefile"
echo `pwd`"/${output}"
if test -e ${output} && test ${output} -nt ${input}; then if test -e ${output} && test ${output} -nt ${input}; then
echo "No need to re-run configure for $arch" echo "No need to re-run configure for $arch"
continue; continue;
fi fi
# Contruct the vlc_build_dir/$arch # Construct the vlc_build_dir/$arch
mkdir -p $arch mkdir -p $arch
cd $arch cd $arch
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment