osmo-bts: Ignore failures on symlinking

In yocto versions before dizzy/master the build was done
in the source directory and when configure was executed
twice in the same directory we would have a build failure
due the symlink already existing. Simply assume that if
the ln fails the link is already there.

Out of disk space situations are handled more early by
OE and missing files will be found by configure.

In dizzy/master OE will clean the build directory before
calling configure so the issue does not apply there.

Fixes: SYS#1170
This commit is contained in:
Holger Hans Peter Freyther 2015-02-16 23:15:54 +01:00
parent 5ba3282e45
commit a561f17dac
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ inherit femtobts_api
CPPFLAGS += " ${BTS_HW_VERSION} "
do_configure_prepend() {
ln -sf ../openbsc openbsc
ln -sf ../openbsc openbsc || true
}
do_compile_append_sysmobts-v2() {