Skip to content

Commit

Permalink
Cosmetic: fix typos, whitespace, and debug calls
Browse files Browse the repository at this point in the history
- Remove white space and debug statement.
- Fix typo in comments

Signed-off-by: Jean-Baptiste Kempf <[email protected]>
  • Loading branch information
feosuna1 authored and jbkempf committed Jan 26, 2012
1 parent 14b6dc7 commit 2b64aa2
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions projects/macosx/framework/Configure.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,13 @@ if test "$ACTION" = "clean"; then
exit 0
fi

# Contruct the vlc_build_dir
# Construct the vlc_build_dir
mkdir -p $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"


args="--disable-nls $args"

# Mac OS X related options
Expand Down Expand Up @@ -60,12 +59,12 @@ args="--disable-visual $args"

if test "x$SDKROOT" != "x"
then
args="--with-macosx-sdk=$SDKROOT $args"
args="--with-macosx-sdk=$SDKROOT $args"
fi

# Debug Flags
if test "$CONFIGURATION" = "Debug"; then
args="--enable-debug $args"
args="--enable-debug $args"
fi

top_srcdir="$VLC_SRC_DIR"
Expand All @@ -79,13 +78,12 @@ for arch in $ARCHS; do

input="$top_srcdir/configure"
output="$arch/Makefile"
echo `pwd`"/${output}"
if test -e ${output} && test ${output} -nt ${input}; then
echo "No need to re-run configure for $arch"
continue;
fi

# Contruct the vlc_build_dir/$arch
# Construct the vlc_build_dir/$arch
mkdir -p $arch
cd $arch

Expand Down

0 comments on commit 2b64aa2

Please sign in to comment.