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:30:38 +0100 |
commit | 43e6fec78e36beb770fd47b0c4631d7382025d6b (patch) | |
tree | d25582f249e4a4dd99fb517f2035be527409692c /meta/recipes-devtools/unfs-server/unfs-server_2.1+2.2beta47.bb | |
parent | 7a254d8294cfbe4b717d083c3d7fcc5515a5ab4f (diff) | |
download | openembedded-core-43e6fec78e36beb770fd47b0c4631d7382025d6b.tar.gz openembedded-core-43e6fec78e36beb770fd47b0c4631d7382025d6b.tar.bz2 openembedded-core-43e6fec78e36beb770fd47b0c4631d7382025d6b.zip |
unfs-server: Fix do_configure so it can be re-executed safely
[YOCTO #2194]
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/unfs-server/unfs-server_2.1+2.2beta47.bb')
-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 () { # 64-bit architectures: rm -f *_xdr.c - mv aclocal.m4 acinclude.m4 + if [ ! -f ${S}/acinclude.m4 ]; then + mv ${S}/aclocal.m4 ${S}/acinclude.m4 + fi } # This recipe is intended for -native and -nativesdk builds only, |