diff options
author | Nitin A Kamble <nitin.a.kamble@intel.com> | 2011-01-24 20:35:24 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-02-01 23:59:42 +0000 |
commit | e1a9c8fb0316c3461b88e37b662823167b5954cd (patch) | |
tree | 3db50b3467c4b6aabd5088beeb85d5f8889423d2 /meta/recipes-devtools/mklibs/files | |
parent | 0322d4c01b88507bcf448df095decedfcdc1ade6 (diff) | |
download | openembedded-core-e1a9c8fb0316c3461b88e37b662823167b5954cd.tar.gz openembedded-core-e1a9c8fb0316c3461b88e37b662823167b5954cd.tar.bz2 openembedded-core-e1a9c8fb0316c3461b88e37b662823167b5954cd.zip |
mklibs-native: new recipe for optimizing size of library files
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
Diffstat (limited to 'meta/recipes-devtools/mklibs/files')
-rw-r--r-- | meta/recipes-devtools/mklibs/files/ac_init_fix.patch | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/meta/recipes-devtools/mklibs/files/ac_init_fix.patch b/meta/recipes-devtools/mklibs/files/ac_init_fix.patch new file mode 100644 index 0000000000..7325931537 --- /dev/null +++ b/meta/recipes-devtools/mklibs/files/ac_init_fix.patch @@ -0,0 +1,17 @@ +Get the version of mklibs by simpler means. The MKLIBS_VERSION string in the +configure.ac file is replaced with real version string by the +do_configure_prepend() function from the recipe .bb file. + +Nitin A Kamble <nitin.a.kamble@intel.com> +Date: 2011/01/24 + +Index: mklibs/configure.ac +=================================================================== +--- mklibs.orig/configure.ac 2010-02-21 17:34:56.000000000 -0800 ++++ mklibs/configure.ac 2011-01-24 18:52:19.943242079 -0800 +@@ -1,4 +1,4 @@ +-AC_INIT([mklibs],m4_esyscmd(dpkg-parsechangelog | perl -ne 'print $1 if m/^Version: (.*)$/;')) ++AC_INIT([mklibs], MKLIBS_VERSION) + AM_INIT_AUTOMAKE([foreign no-define]) + AC_CONFIG_HEADERS([config.h]) + AM_MAINTAINER_MODE |