diff options
author | Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> | 2011-11-15 12:58:46 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-11-16 17:32:46 +0000 |
commit | 0f9c30468a4793589961e59cc07206060cacd832 (patch) | |
tree | 5140961b72d6177c36dde3234d78d847e2c3ae44 /meta/recipes-sato/sato-screenshot/files | |
parent | 36747532e7492e2cfddc93c58ee9b804020e97d1 (diff) | |
download | poky-0f9c30468a4793589961e59cc07206060cacd832.tar.gz |
screenshot: rename to sato-screenshot
To remove a name conflict with e17's screenshot tool (and possibly other
screenshot tools, as screenshot is a generic term), rename screenshot
to sato-screenshot.
(From OE-Core rev: 5423d2fabade45974f20948a6d90a663eead209a)
Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-sato/sato-screenshot/files')
-rw-r--r-- | meta/recipes-sato/sato-screenshot/files/fix_ldadd_order.patch | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/meta/recipes-sato/sato-screenshot/files/fix_ldadd_order.patch b/meta/recipes-sato/sato-screenshot/files/fix_ldadd_order.patch new file mode 100644 index 0000000000..7d9689e893 --- /dev/null +++ b/meta/recipes-sato/sato-screenshot/files/fix_ldadd_order.patch | |||
@@ -0,0 +1,15 @@ | |||
1 | Fix the ordering of LDADD options to fix a compilation failure. | ||
2 | |||
3 | Signed-off-by: Scott Garman <scott.a.garman@intel.com> | ||
4 | |||
5 | Upstream-Status: Inappropriate [configuration] | ||
6 | |||
7 | diff -urN screenshot.orig//Makefile.am screenshot/Makefile.am | ||
8 | --- screenshot.orig//Makefile.am 2010-06-29 11:55:00.000000000 -0700 | ||
9 | +++ screenshot/Makefile.am 2011-03-01 11:09:01.215813968 -0800 | ||
10 | @@ -23,4 +23,4 @@ | ||
11 | # A standalone tool for running from a terminal and scripts | ||
12 | bin_PROGRAMS = screenshot | ||
13 | screenshot_SOURCES = main.c | ||
14 | -screenshot_LDADD = $(GTK_LIBS) libshot.la | ||
15 | +screenshot_LDADD = libshot.la $(GTK_LIBS) | ||