Commit 6162deb6 authored by vasil's avatar vasil

branches/zip:

Remove unnecessary code. Environment variables are passed to children anyway,
no need to export them.

Approved by:	Sunny (via IM)
parent 13c99e8b
...@@ -34,24 +34,6 @@ strlen() ...@@ -34,24 +34,6 @@ strlen()
echo $STRLEN echo $STRLEN
} }
# Set to dummy value if not defined
: ${CC="x"}
: ${CXX="x"}
# Export CC and CXX, so that dynconfig can generate the correct
# configure parameters.
if [ "${CC}" != "x" ]; then
export CC
else
CC=
fi
if [ "${CXX}" != "x" ]; then
export CXX
else
CXX=
fi
INNODIR="storage/innobase" INNODIR="storage/innobase"
DYNTMPFILE="/tmp/configure.$$" DYNTMPFILE="/tmp/configure.$$"
DYNCONFIG="$INNODIR/scripts/dynconfig" DYNCONFIG="$INNODIR/scripts/dynconfig"
......
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