diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-04-15 14:02:02 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-04-15 17:31:58 +0100 |
commit | 5c006a460ff9c838523a35f198b8746bd8719ab2 (patch) | |
tree | 5458e583c8f3192a00a39270280953472bce6f86 /meta/recipes-devtools | |
parent | 2e01a44f3b8406fa2dbcb1cc2061784a2a099eac (diff) | |
download | poky-5c006a460ff9c838523a35f198b8746bd8719ab2.tar.gz |
unfs-server: Fix do_configure so it can be re-executed safely
[YOCTO #2194]
(From OE-Core rev: 43e6fec78e36beb770fd47b0c4631d7382025d6b)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/unfs-server/unfs-server_2.1+2.2beta47.bb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/recipes-devtools/unfs-server/unfs-server_2.1+2.2beta47.bb b/meta/recipes-devtools/unfs-server/unfs-server_2.1+2.2beta47.bb index 4e619c5f69..d03c153298 100644 --- a/meta/recipes-devtools/unfs-server/unfs-server_2.1+2.2beta47.bb +++ b/meta/recipes-devtools/unfs-server/unfs-server_2.1+2.2beta47.bb | |||
@@ -62,7 +62,9 @@ do_configure_prepend () { | |||
62 | # 64-bit architectures: | 62 | # 64-bit architectures: |
63 | rm -f *_xdr.c | 63 | rm -f *_xdr.c |
64 | 64 | ||
65 | mv aclocal.m4 acinclude.m4 | 65 | if [ ! -f ${S}/acinclude.m4 ]; then |
66 | mv ${S}/aclocal.m4 ${S}/acinclude.m4 | ||
67 | fi | ||
66 | } | 68 | } |
67 | 69 | ||
68 | # This recipe is intended for -native and -nativesdk builds only, | 70 | # This recipe is intended for -native and -nativesdk builds only, |