Diff

Differences From Artifact [72ab3f6699]:

To Artifact [d2bfb61304]:


36
37
38
39
40
41
42




43
44
45
46
47
48
49
50
51
52
53
54
55
	if [ ! -d '../buildsrc' ]; then
		gzip -dc "../${SRC}" | tar -xf -
	else    
		cp -rp ../buildsrc/* './'
	fi

	cd "${BUILDDIR}" || exit 1




	# We don't pass CONFIGUREEXTRA here, since this isn't a GNU autoconf
	# script and will puke
	./configure --prefix="${INSTDIR}"

	${MAKE:-make} || exit 1

	${MAKE:-make} install

	# We don't really care too much about failure in zlib
	exit 0
) || exit 1

exit 0







>
>
>
>




|

|






36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
	if [ ! -d '../buildsrc' ]; then
		gzip -dc "../${SRC}" | tar -xf -
	else    
		cp -rp ../buildsrc/* './'
	fi

	cd "${BUILDDIR}" || exit 1
	# ZLIB Expects AR to contain options
	AR="${AR:-ar} rcu"
	export AR

	# We don't pass CONFIGUREEXTRA here, since this isn't a GNU autoconf
	# script and will puke
	./configure --prefix="${INSTDIR}"

	${MAKE:-make} AR="${AR}" || exit 1

	${MAKE:-make} install AR="${AR}"

	# We don't really care too much about failure in zlib
	exit 0
) || exit 1

exit 0