Overview
| Comment: | Fixed consistency issue with build script specification of -rpath | 
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive | 
| Timelines: | family | ancestors | descendants | both | packages | 
| Files: | files | file ages | folders | 
| SHA1: | 1f32b7a12d88600ffef1da88d0906a23 | 
| User & Date: | rkeene on 2014-11-14 04:54:22 | 
| Other Links: | branch diff | manifest | tags | 
Context
| 2014-11-18 | ||
| 15:12 | Added bzip2 package check-in: a725e4f9fa user: rkeene tags: packages | |
| 2014-11-14 | ||
| 04:54 | Fixed consistency issue with build script specification of -rpath check-in: 1f32b7a12d user: rkeene tags: packages | |
| 2014-11-12 | ||
| 15:31 | Added MPC package check-in: 6296d61701 user: rkeene tags: packages | |
Changes
Modified build from [5242f6143a] to [f00e54c206].
| ︙ | ︙ | |||
| 243 244 245 246 247 248 249 | 
	if ! echo " ${require[*]} " | grep ' linux-headers[/@: ]' >/dev/null; then
		CC="${CC} -isystem ${linuxheadersdir}/include"
	fi
	BUILD_CC="${CC}"
	HOST_CC="${CC}"
 | | | 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 | 
	if ! echo " ${require[*]} " | grep ' linux-headers[/@: ]' >/dev/null; then
		CC="${CC} -isystem ${linuxheadersdir}/include"
	fi
	BUILD_CC="${CC}"
	HOST_CC="${CC}"
	LDFLAGS="${LDFLAGS} -L${glibcdir}/lib -Wl,-rpath,${glibcdir}/lib -Wl,--dynamic-linker,${dynlinker}"
	if [ -z "${appfs_build_no_default_symver}" ]; then
		LDFLAGS="${LDFLAGS} -Wl,--default-symver"
	fi
	PKG_CONFIG_LIBDIR="${glibcdir}/lib/pkgconfig"
	export CC BUILD_CC HOST_CC LDFLAGS PKG_CONFIG_LIBDIR
 | 
| ︙ | ︙ |