diff options
author | Ross Burton <ross.burton@intel.com> | 2013-05-29 19:15:16 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-06-17 16:44:34 +0100 |
commit | 22c469fea28a9e1eb05374b362743545bdf28ec2 (patch) | |
tree | 454404541b76c860e99e22b726d9cbdfb17d61b9 /meta/recipes-gnome/gtk+ | |
parent | f245b1f37fc326c85d19a8a48784c44d15b08ea7 (diff) | |
download | openembedded-core-22c469fea28a9e1eb05374b362743545bdf28ec2.tar.gz openembedded-core-22c469fea28a9e1eb05374b362743545bdf28ec2.tar.bz2 openembedded-core-22c469fea28a9e1eb05374b362743545bdf28ec2.zip |
gtk+3: clean up libtool link creation to avoid errors in configure log
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/recipes-gnome/gtk+')
-rw-r--r-- | meta/recipes-gnome/gtk+/gtk+3.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-gnome/gtk+/gtk+3.inc b/meta/recipes-gnome/gtk+/gtk+3.inc index 4742eb9267..f4d5254e43 100644 --- a/meta/recipes-gnome/gtk+/gtk+3.inc +++ b/meta/recipes-gnome/gtk+/gtk+3.inc @@ -18,7 +18,8 @@ export PKG_CONFIG_FOR_BUILD = "${STAGING_BINDIR_NATIVE}/pkg-config-native" do_configure_prepend() { # Do this because the configure script is running ./libtool directly - ln -s ${TARGET_PREFIX}libtool libtool || true + rm -f libtool + ln -s ${TARGET_PREFIX}libtool libtool } # Forcibly disable the GTK+ 2 dependency as we don't want to natively build the |