diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2012-09-28 20:33:01 +0200 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2012-10-02 19:29:07 +0200 |
commit | 44b3c94232301bbfa97fe967635615ea91c77055 (patch) | |
tree | 18855b6eea3a08e5f21bf73ab8b580faee116bc7 /meta-oe/recipes-navigation/foxtrotgps/foxtrotgps_1.1.1.bb | |
parent | 2730f4f6fa057eb0c7c2a4a09a28919c7e201698 (diff) | |
download | meta-openembedded-44b3c94232301bbfa97fe967635615ea91c77055.tar.gz |
foxtrotgps: rename configure.in only if it still exists
* it was failing when do_configure was reexecuted in same workdir
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-navigation/foxtrotgps/foxtrotgps_1.1.1.bb')
-rw-r--r-- | meta-oe/recipes-navigation/foxtrotgps/foxtrotgps_1.1.1.bb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/meta-oe/recipes-navigation/foxtrotgps/foxtrotgps_1.1.1.bb b/meta-oe/recipes-navigation/foxtrotgps/foxtrotgps_1.1.1.bb index 4572b8f48..0cafdde18 100644 --- a/meta-oe/recipes-navigation/foxtrotgps/foxtrotgps_1.1.1.bb +++ b/meta-oe/recipes-navigation/foxtrotgps/foxtrotgps_1.1.1.bb | |||
@@ -12,8 +12,12 @@ SRC_URI[sha256sum] = "ae9706285510554cc0813ac92522e0d1672b0ddb065307bfacfcff3c32 | |||
12 | 12 | ||
13 | inherit autotools pkgconfig perlnative | 13 | inherit autotools pkgconfig perlnative |
14 | 14 | ||
15 | PR = "r1" | ||
16 | |||
15 | do_configure_prepend() { | 17 | do_configure_prepend() { |
16 | mv ${S}/configure.in ${S}/configure.ac | 18 | if [ -f ${S}/configure.in ] ; then |
19 | mv ${S}/configure.in ${S}/configure.ac | ||
20 | fi | ||
17 | } | 21 | } |
18 | 22 | ||
19 | RRECOMMENDS_${PN} = "gpsd" | 23 | RRECOMMENDS_${PN} = "gpsd" |