blob: 4c6f6ce02276f0fde7303866153fc6db2d9c9cb4 [file] [log] [blame]
Patrick Williams169d7bc2024-01-05 11:33:25 -06001From 37ad9845b5b8ab7170a2aaba31a505b2a36ba0f8 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
Patrick Williams520786c2023-06-25 16:20:36 -05008Upstream-Status: Pending
9
Patrick Williams169d7bc2024-01-05 11:33:25 -060010Signed-off-by: Khem Raj <raj.khem@gmail.com>
11---
Andrew Geissler595f6302022-01-24 19:11:47 +000012 open-vm-tools/configure.ac | 3 +--
13 1 file changed, 1 insertion(+), 2 deletions(-)
Brad Bishop15ae2502019-06-18 21:44:24 -040014
15diff --git a/open-vm-tools/configure.ac b/open-vm-tools/configure.ac
Patrick Williams169d7bc2024-01-05 11:33:25 -060016index daa0939c3..497e9459a 100644
Brad Bishop15ae2502019-06-18 21:44:24 -040017--- a/open-vm-tools/configure.ac
18+++ b/open-vm-tools/configure.ac
Andrew Geissler595f6302022-01-24 19:11:47 +000019@@ -326,7 +326,6 @@ AC_ARG_ENABLE(
Brad Bishop15ae2502019-06-18 21:44:24 -040020 [],
21 [enable_resolutionkms="auto"])
22
Andrew Geissler595f6302022-01-24 19:11:47 +000023-
24 AC_ARG_ENABLE(
25 vmwgfxctrl,
26 AS_HELP_STRING(
27@@ -335,7 +334,7 @@ AC_ARG_ENABLE(
28 [],
29 [enable_vmwgfxctrl="auto"])
30
31-AM_INIT_AUTOMAKE
Brad Bishop15ae2502019-06-18 21:44:24 -040032+AM_INIT_AUTOMAKE([subdir-objects])
Brad Bishop15ae2502019-06-18 21:44:24 -040033
34 ###
Andrew Geissler595f6302022-01-24 19:11:47 +000035 ### Constants
Patrick Williams2194f502022-10-16 14:26:09 -050036--
372.25.1
38