Commit 366137ed authored by Peter Korsgaard's avatar Peter Korsgaard
Browse files

gmpc: needs gob2 installed on host, so check for it

parent 2bb4de20
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -20,3 +20,10 @@ GMPC_CONF_OPT += --disable-sm
endif

$(eval $(call AUTOTARGETS,package,gmpc))

# we NEED a host gob2
ifeq ($(BR2_PACKAGE_GMPC),y)
ifeq ($(wildcard $(shell which gob2 || echo /usr/bin/gob2)),)
$(error Host gob2 not found. Please install GTK+ Object Builder package on your host (something like gob2))
endif
endif