From: Michal Privoznik Date: Wed, 29 Oct 2014 03:32:43 +0000 (+0100) Subject: src/Makefile.am: Add forgotten backslash X-Git-Tag: v1.2.10-rc2~22 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=233ecdea715b4639348b16eaaa35348586a1ea5a;p=thirdparty%2Flibvirt.git src/Makefile.am: Add forgotten backslash As I've pushed 5892944f I haven't noticed one small nitpick. There was this backslash missing on the line 1231 in the enumeration of libraries to be added to vbox storage driver. This resulted in nondeterministic build which sometimes succeeded and sometimes failed. Signed-off-by: Michal Privoznik --- diff --git a/src/Makefile.am b/src/Makefile.am index 5b81432f6b..d8fe624591 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1228,7 +1228,7 @@ libvirt_driver_vbox_storage_impl_la_CFLAGS = \ libvirt_driver_vbox_storage_impl_la_LDFLAGS = $(AM_LDFLAGS) libvirt_driver_vbox_storage_impl_la_LIBADD = $(DLOPEN_LIBS) \ $(MSCOM_LIBS) \ - $(LIBXML_LIBS) + $(LIBXML_LIBS) \ libvirt_driver_vbox_impl.la libvirt_driver_vbox_storage_impl_la_SOURCES = $(VBOX_STORAGE_DRIVER_SOURCES) endif WITH_VBOX