Check-in [6548a534b1]
Overview
Comment:Fixed to support calling AR with options
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1:6548a534b177bb5cf1edfabb7a809fdd40d24797
User & Date: rkeene on 2010-09-26 04:41:16
Other Links: manifest | tags
Context
2010-09-26
04:41
Added Tk/xlib to include search path check-in: b5c571778a user: rkeene tags: trunk
04:41
Fixed to support calling AR with options check-in: 6548a534b1 user: rkeene tags: trunk
04:41
Updated licensing information check-in: 37152044b7 user: rkeene tags: trunk
Changes

Modified zlib/build.sh from [72ab3f6699] to [d2bfb61304].

    36     36   	if [ ! -d '../buildsrc' ]; then
    37     37   		gzip -dc "../${SRC}" | tar -xf -
    38     38   	else    
    39     39   		cp -rp ../buildsrc/* './'
    40     40   	fi
    41     41   
    42     42   	cd "${BUILDDIR}" || exit 1
           43  +	# ZLIB Expects AR to contain options
           44  +	AR="${AR:-ar} rcu"
           45  +	export AR
           46  +
    43     47   	# We don't pass CONFIGUREEXTRA here, since this isn't a GNU autoconf
    44     48   	# script and will puke
    45     49   	./configure --prefix="${INSTDIR}"
    46     50   
    47         -	${MAKE:-make} || exit 1
           51  +	${MAKE:-make} AR="${AR}" || exit 1
    48     52   
    49         -	${MAKE:-make} install
           53  +	${MAKE:-make} install AR="${AR}"
    50     54   
    51     55   	# We don't really care too much about failure in zlib
    52     56   	exit 0
    53     57   ) || exit 1
    54     58   
    55     59   exit 0