From 315406d8cd0937e786723986e88d376c88806c60 Mon Sep 17 00:00:00 2001 From: Jonathan Lebon Date: Mon, 4 Jun 2018 09:11:24 -0400 Subject: [PATCH] daemon: Don't use absolute path for gdbus-codegen This breaks builds on platforms that don't have `gdbus-codegen` installed at that path. This reverts #1153, which was needed at the time, but things appear to be fixed now. Closes: #1383 Approved by: cgwalters --- Makefile-daemon.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile-daemon.am b/Makefile-daemon.am index c2ff3b50..6c2ce263 100644 --- a/Makefile-daemon.am +++ b/Makefile-daemon.am @@ -4,7 +4,7 @@ dbus_built_sources = rpm-ostreed-generated.h rpm-ostreed-generated.c # https://github.com/projectatomic/rpm-ostree/pull/705 rpm-ostreed-generated.h: rpm-ostreed-generated.c rpm-ostreed-generated.c: Makefile $(top_srcdir)/src/daemon/org.projectatomic.rpmostree1.xml - $(AM_V_GEN) /usr/bin/gdbus-codegen \ + $(AM_V_GEN) gdbus-codegen \ --interface-prefix org.projectatomic.rpmostree1 \ --c-namespace RPMOSTree \ --c-generate-object-manager \