* [PATCH 0/1] Add env setting to support libtool2.4 m4 macro
@ 2011-06-29 23:09 Jessica Zhang
2011-06-29 23:09 ` [PATCH 1/1] Add OECORE_ACLOCAL_OPTS to env setup scripts for autotool project using correct libtool 2.4 Jessica Zhang
2011-06-30 23:17 ` [PATCH 0/1] Add env setting to support libtool2.4 m4 macro Richard Purdie
0 siblings, 2 replies; 3+ messages in thread
From: Jessica Zhang @ 2011-06-29 23:09 UTC (permalink / raw)
To: openembedded-core
Add OECORE_ACLOCAL_OPTS to env setup scripts for options
running aclocal to generate correct libtool 2.4 m4 macro,
the autogen.sh should be changed as aclocal ${OECORE_ACLOCAL_OPTS}
The following changes since commit c412674cf818e77e35857fb93353e392e7ac9e53:
Khem Raj (1):
package.bbclass,prserv.bbclass: Compare USE_PR_SERV with "1" or "0"
are available in the git repository at:
git://git.yoctoproject.org/poky-contrib jzhang/aclocal
http://git.yoctoproject.org/cgit.cgi//log/?h=jzhang/aclocal
Jessica Zhang (1):
Add OECORE_ACLOCAL_OPTS to env setup scripts for autotool project
using correct libtool 2.4
meta/classes/toolchain-scripts.bbclass | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH 1/1] Add OECORE_ACLOCAL_OPTS to env setup scripts for autotool project using correct libtool 2.4
2011-06-29 23:09 [PATCH 0/1] Add env setting to support libtool2.4 m4 macro Jessica Zhang
@ 2011-06-29 23:09 ` Jessica Zhang
2011-06-30 23:17 ` [PATCH 0/1] Add env setting to support libtool2.4 m4 macro Richard Purdie
1 sibling, 0 replies; 3+ messages in thread
From: Jessica Zhang @ 2011-06-29 23:09 UTC (permalink / raw)
To: openembedded-core
Signed-off-by: Jessica Zhang <jessica.zhang@intel.com>
---
meta/classes/toolchain-scripts.bbclass | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/meta/classes/toolchain-scripts.bbclass b/meta/classes/toolchain-scripts.bbclass
index 09ecd7c..3301319 100644
--- a/meta/classes/toolchain-scripts.bbclass
+++ b/meta/classes/toolchain-scripts.bbclass
@@ -28,6 +28,7 @@ toolchain_create_sdk_env_script () {
echo 'export CPPFLAGS="--sysroot=${SDKTARGETSYSROOT}"' >> $script
echo 'export OECORE_NATIVE_SYSROOT="${SDKPATHNATIVE}"' >> $script
echo 'export OECORE_TARGET_SYSROOT="${SDKTARGETSYSROOT}"' >> $script
+ echo 'export OECORE_ACLOCAL_OPTS="-I ${SDKPATHNATIVE}/usr/share/aclocal"' >> $script
echo 'export POKY_DISTRO_VERSION="${DISTRO_VERSION}"' >> $script
}
@@ -59,6 +60,7 @@ toolchain_create_tree_env_script () {
echo 'export CXXFLAGS="${TARGET_CC_ARCH}"' >> $script
echo 'export OECORE_NATIVE_SYSROOT="${STAGING_DIR_NATIVE}"' >> $script
echo 'export OECORE_TARGET_SYSROOT="${STAGING_DIR_TARGET}"' >> $script
+ echo 'export OECORE_ACLOCAL_OPTS="-I ${STAGING_DIR_NATIVE}/usr/share/aclocal"' >> $script
}
# This function creates an environment-setup-script for use by the ADT installer
@@ -89,6 +91,7 @@ toolchain_create_sdk_env_script_for_installer () {
echo 'export CPPFLAGS="--sysroot=##SDKTARGETSYSROOT##"' >> $script
echo 'export OECORE_NATIVE_SYSROOT="${SDKPATHNATIVE}"' >> $script
echo 'export OECORE_TARGET_SYSROOT="##SDKTARGETSYSROOT##"' >> $script
+ echo 'export OECORE_ACLOCAL_OPTS="-I ${SDKPATHNATIVE}/usr/share/acloal"' >> $script
echo 'export POKY_DISTRO_VERSION="${DISTRO_VERSION}"' >> $script
echo 'export POKY_SDK_VERSION="${SDK_VERSION}"' >> $script
}
--
1.7.0.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 0/1] Add env setting to support libtool2.4 m4 macro
2011-06-29 23:09 [PATCH 0/1] Add env setting to support libtool2.4 m4 macro Jessica Zhang
2011-06-29 23:09 ` [PATCH 1/1] Add OECORE_ACLOCAL_OPTS to env setup scripts for autotool project using correct libtool 2.4 Jessica Zhang
@ 2011-06-30 23:17 ` Richard Purdie
1 sibling, 0 replies; 3+ messages in thread
From: Richard Purdie @ 2011-06-30 23:17 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer
On Wed, 2011-06-29 at 16:09 -0700, Jessica Zhang wrote:
> Add OECORE_ACLOCAL_OPTS to env setup scripts for options
> running aclocal to generate correct libtool 2.4 m4 macro,
> the autogen.sh should be changed as aclocal ${OECORE_ACLOCAL_OPTS}
> The following changes since commit c412674cf818e77e35857fb93353e392e7ac9e53:
> Khem Raj (1):
> package.bbclass,prserv.bbclass: Compare USE_PR_SERV with "1" or "0"
>
> are available in the git repository at:
>
> git://git.yoctoproject.org/poky-contrib jzhang/aclocal
> http://git.yoctoproject.org/cgit.cgi//log/?h=jzhang/aclocal
>
> Jessica Zhang (1):
> Add OECORE_ACLOCAL_OPTS to env setup scripts for autotool project
> using correct libtool 2.4
Merged to master, thanks.
Richard
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2011-06-30 23:21 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-29 23:09 [PATCH 0/1] Add env setting to support libtool2.4 m4 macro Jessica Zhang
2011-06-29 23:09 ` [PATCH 1/1] Add OECORE_ACLOCAL_OPTS to env setup scripts for autotool project using correct libtool 2.4 Jessica Zhang
2011-06-30 23:17 ` [PATCH 0/1] Add env setting to support libtool2.4 m4 macro Richard Purdie
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox