Skip to content

Commit 92ff002

Browse files
authored
Merge pull request #136 from hmakelin/fix-make-build
Fix make build target
2 parents 93ea8ad + 1805621 commit 92ff002

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

debian/gisnav/Makefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,5 +91,9 @@ $(BUILD_DIR)/etc/gisnav:
9191
@git clone --depth 1 file://${REPO_ROOT_PATH} $@
9292
@cd ${REPO_ROOT_PATH} && git diff --cached > /tmp/gisnav-diff.patch \
9393
&& git diff >> /tmp/gisnav-diff.patch
94-
@cd $@ && git apply /tmp/gisnav-diff.patch
94+
@if [ -s /tmp/gisnav-diff.patch ]; then \
95+
cd $@ && git apply /tmp/gisnav-diff.patch; \
96+
else \
97+
echo "No changes to apply."; \
98+
fi
9599
@rm -rf /tmp/gisnav-diff.patch

docs/sphinx/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
project = "GISNav"
1515
copyright = "2024, Harri Makelin"
1616
author = "Harri Makelin"
17-
release = "v0.68.0"
17+
release = "v0.68.1"
1818

1919
# -- General configuration ---------------------------------------------------
2020
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

docs/vitepress/docs/shared/clone-to-colcon-workspace.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Clone latest version of GISNav and dependencies to colcon workspace:
22

33
```bash
44
cd ~/colcon_ws/src
5-
git clone --branch v0.68.0 https://github.com/hmakelin/gisnav.git
5+
git clone --branch v0.68.1 https://github.com/hmakelin/gisnav.git
66
git clone --branch 2.8.0 https://github.com/mavlink/mavros.git
77
git clone --branch release/1.14 https://github.com/px4/px4_msgs.git
88
```

docs/vitepress/docs/shared/install-debian.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ You can make this process quicker by building your own (potentially cross-platfo
66
:::
77

88
```bash
9-
GISNAV_RELEASE=v0.68.0
9+
GISNAV_RELEASE=v0.68.1
1010
wget https://github.com/hmakelin/gisnav/releases/download/${GISNAV_RELEASE}/gisnav-${GISNAV_RELEASE}_all.deb -O gisnav-${GISNAV_RELEASE}_all.deb
1111
sudo dpkg -i ./gisnav-${GISNAV_RELEASE}_all.deb
1212
```

ros/gisnav/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
33
<package format="3">
44
<name>gisnav</name>
5-
<version>0.68.0</version>
5+
<version>0.68.1</version>
66
<description>Estimates airborne drone global position by matching video to map retrieved from onboard GIS server.</description>
77
<author email="hmakelin@protonmail.com">Harri Makelin</author>
88
<maintainer email="hmakelin@protonmail.com">Harri Makelin</maintainer>

0 commit comments

Comments
 (0)