Skip to content

Commit a94fdc3

Browse files
Merge pull request #55 from cynic64/master
Correctly detect when gdbus-codegen is missing
2 parents a132171 + b001deb commit a94fdc3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

configure

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5684,7 +5684,9 @@ if test "$gio" = "yes" ; then
56845684
echo "CONFIG_GIO=y" >> $config_host_mak
56855685
echo "GIO_CFLAGS=$gio_cflags" >> $config_host_mak
56865686
echo "GIO_LIBS=$gio_libs" >> $config_host_mak
5687-
echo "GDBUS_CODEGEN=$gdbus_codegen" >> $config_host_mak
5687+
if [ -n "$gdbus_codegen" ]; then
5688+
echo "GDBUS_CODEGEN=$gdbus_codegen" >> $config_host_mak
5689+
fi
56885690
fi
56895691
echo "CONFIG_TLS_PRIORITY=\"$tls_priority\"" >> $config_host_mak
56905692
if test "$gnutls" = "yes" ; then

0 commit comments

Comments
 (0)