mirror of
https://github.com/home-assistant/operating-system.git
synced 2025-11-15 13:49:26 +00:00
* Update Buildroot to 2019-02.3 * Fix enter script * Update ova_defconfig * Fix network manager * Remove runc patches * Use same docker version * Fix build * Fix vmtools * Fix depens * Fix handling with tempfiles * Fix permission handling * Fix cp * Cleanup * Fix mounts
22 lines
670 B
Diff
22 lines
670 B
Diff
m4: do not force -I/usr/include in CPPFLAGS
|
|
|
|
This is so horribly broken for cross-compilation. :-(
|
|
|
|
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
|
|
|
|
--- open-vm-tools/m4/vmtools.m4 2015-06-17 10:03:00.000000000 +0200
|
|
+++ open-vm-tools/m4/vmtools.m4 2015-06-17 10:03:00.000000000 +0200
|
|
@@ -281,10 +281,10 @@
|
|
if test "$os" = freebsd; then
|
|
CUSTOM_$1_CPPFLAGS="-I/usr/local/include"
|
|
else
|
|
- CUSTOM_$1_CPPFLAGS="-I/usr/include"
|
|
+ CUSTOM_$1_CPPFLAGS=" "
|
|
fi
|
|
if test -n "$2"; then
|
|
- CUSTOM_$1_CPPFLAGS="${CUSTOM_$1_CPPFLAGS}/$2"
|
|
+ : CUSTOM_$1_CPPFLAGS="${CUSTOM_$1_CPPFLAGS}/$2"
|
|
fi
|
|
fi
|
|
])
|