blob: cb30966afe5bcdf1010e427ab4b6492cdac63dbe [file] [log] [blame]
Patrick Williams2194f502022-10-16 14:26:09 -05001From dbe0943011c24d48de3df5a95f4e4606be0ef250 Mon Sep 17 00:00:00 2001
Brad Bishop15ae2502019-06-18 21:44:24 -04002From: Khem Raj <raj.khem@gmail.com>
3Date: Wed, 13 Jun 2018 23:48:04 -0700
4Subject: [PATCH] Fix subdir objects configure error
5
6Fix build on musl while here
7
8Signed-off-by: Khem Raj <raj.khem@gmail.com>
9---
Andrew Geissler595f6302022-01-24 19:11:47 +000010 open-vm-tools/configure.ac | 3 +--
11 1 file changed, 1 insertion(+), 2 deletions(-)
Brad Bishop15ae2502019-06-18 21:44:24 -040012
13diff --git a/open-vm-tools/configure.ac b/open-vm-tools/configure.ac
Patrick Williams2194f502022-10-16 14:26:09 -050014index 9a0c63cf6..5845490f6 100644
Brad Bishop15ae2502019-06-18 21:44:24 -040015--- a/open-vm-tools/configure.ac
16+++ b/open-vm-tools/configure.ac
Andrew Geissler595f6302022-01-24 19:11:47 +000017@@ -326,7 +326,6 @@ AC_ARG_ENABLE(
Brad Bishop15ae2502019-06-18 21:44:24 -040018 [],
19 [enable_resolutionkms="auto"])
20
Andrew Geissler595f6302022-01-24 19:11:47 +000021-
22 AC_ARG_ENABLE(
23 vmwgfxctrl,
24 AS_HELP_STRING(
25@@ -335,7 +334,7 @@ AC_ARG_ENABLE(
26 [],
27 [enable_vmwgfxctrl="auto"])
28
29-AM_INIT_AUTOMAKE
Brad Bishop15ae2502019-06-18 21:44:24 -040030+AM_INIT_AUTOMAKE([subdir-objects])
Brad Bishop15ae2502019-06-18 21:44:24 -040031
32 ###
Andrew Geissler595f6302022-01-24 19:11:47 +000033 ### Constants
Patrick Williams2194f502022-10-16 14:26:09 -050034--
352.25.1
36