diff options
author | Martin Dietze <di@fh-wedel.de> | 2006-09-15 09:04:28 +0000 |
---|---|---|
committer | Martin Dietze <di@fh-wedel.de> | 2006-09-15 09:04:28 +0000 |
commit | fe75f8484090a1ff9573e2842f0ab9f8619f9a59 (patch) | |
tree | 35c554f01bcc2ace899e8bc86a4bd039ef2d7df7 /packages/xorg-lib/libxt_X11R7.0-1.0.0.bb | |
parent | 6ebd1fb68e206eb54a9b3b965928c209d33b0beb (diff) |
xorg-lib: resolving bugs #1411, #1412
* The () block containing the compile command for the native makekeys tool now has a "|| exit 1" so that the build stops if the compile fails
* The X11_CFLAGS and XT_CFLAGS respectively are set empty when compiling the native tool
Diffstat (limited to 'packages/xorg-lib/libxt_X11R7.0-1.0.0.bb')
-rw-r--r-- | packages/xorg-lib/libxt_X11R7.0-1.0.0.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/xorg-lib/libxt_X11R7.0-1.0.0.bb b/packages/xorg-lib/libxt_X11R7.0-1.0.0.bb index b8bbe4dea3..520ab10c0e 100644 --- a/packages/xorg-lib/libxt_X11R7.0-1.0.0.bb +++ b/packages/xorg-lib/libxt_X11R7.0-1.0.0.bb @@ -13,7 +13,7 @@ EXTRA_OECONF="--enable-malloc0returnsnull --disable-install-makestrs --disable-x do_compile() { ( unset CC LD CXX CCLD - oe_runmake -C util 'CC=${BUILD_CC}' 'LD=${BUILD_LD}' 'CXX=${BUILD_CXX}' 'CCLD=${BUILD_CCLD}' 'CFLAGS=-D_GNU_SOURCE ${BUILD_CFLAGS}' 'LDFLAGS=${BUILD_LDFLAGS}' 'CXXFLAGS=${BUILD_CXXFLAGS}' 'CPPFLAGS=${BUILD_CPPFLAGS}' makestrs - ) + oe_runmake -C util 'XT_CFLAGS=' 'CC=${BUILD_CC}' 'LD=${BUILD_LD}' 'CXX=${BUILD_CXX}' 'CCLD=${BUILD_CCLD}' 'CFLAGS=-D_GNU_SOURCE ${BUILD_CFLAGS}' 'LDFLAGS=${BUILD_LDFLAGS}' 'CXXFLAGS=${BUILD_CXXFLAGS}' 'CPPFLAGS=${BUILD_CPPFLAGS}' makestrs + ) || exit 1 oe_runmake } |