diff options
| author | Nick Hainke | 2021-06-07 18:43:04 +0000 |
|---|---|---|
| committer | Polynomdivision | 2021-06-07 19:02:34 +0000 |
| commit | 27ac56adc643d0d79d33591e349a507711dfd38f (patch) | |
| tree | 5cf2c88ac2daa146d982eb79b8aaacecc9916fc3 | |
| parent | 4f7791a1fd3fb1c77baa94ca57264378d0ace7a1 (diff) | |
| download | routing-27ac56adc643d0d79d33591e349a507711dfd38f.tar.gz | |
olsrd: only pud depends on libgps
As a workaround for the glibc-fix the dependency on libgps was moved
to olsrd. However, only pud is using this library.
Signed-off-by: Nick Hainke <vincent@systemli.org>
| -rw-r--r-- | olsrd/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/olsrd/Makefile b/olsrd/Makefile index 7d3733d..e12db0a 100644 --- a/olsrd/Makefile +++ b/olsrd/Makefile @@ -36,7 +36,7 @@ endef define Package/olsrd $(call Package/olsrd/template) MENU:=1 - DEPENDS:=+libpthread +libgps + DEPENDS:=+libpthread endef define Package/olsrd/conffiles @@ -125,7 +125,7 @@ endef define Package/olsrd-mod-pud $(call Package/olsrd/template) - DEPENDS:=olsrd + DEPENDS:=olsrd +libgps TITLE:=Position Update Distribution plugin endef |