mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
android-build: Use subsurface source variable
We already have a variable pointing to the source dir for subsurface, so use it. This way we can build out of tree, in any directory. Signed-off-by: Anton Lundin <glance@acc.umu.se>
This commit is contained in:
parent
346bb9f31f
commit
fa95a7c56a
1 changed files with 2 additions and 2 deletions
|
@ -368,10 +368,10 @@ fi
|
|||
if [ ! -f libdivecomputer-${ARCH}.SHA ] ; then
|
||||
echo "" > libdivecomputer-${ARCH}.SHA
|
||||
fi
|
||||
pushd subsurface
|
||||
pushd "$SUBSURFACE_SOURCE"
|
||||
git submodule update --recursive
|
||||
popd
|
||||
CURRENT_SHA=$(cd subsurface/libdivecomputer ; git describe)
|
||||
CURRENT_SHA=$(cd "$SUBSURFACE_SOURCE"/libdivecomputer ; git describe)
|
||||
PREVIOUS_SHA=$(cat libdivecomputer-${ARCH}.SHA)
|
||||
if [[ ! "$CURRENT_SHA" = "$PREVIOUS_SHA" || ! -e "$PKG_CONFIG_LIBDIR/libdivecomputer.pc" ]] ; then
|
||||
mkdir -p libdivecomputer-build-"$ARCH"
|
||||
|
|
Loading…
Add table
Reference in a new issue