Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2021-04-29 12:23:11 +0300
committerCorinna Vinschen <corinna@vinschen.de>2021-04-29 12:28:14 +0300
commitcf25b559020013e0503c4eead107b9a8225586e6 (patch)
treee5fb5dff7f0b9ad61f76e70de6e183b5499a6602 /winsup/Makefile.am.common
parent84ffbfeb10181e82eef3d04a551943830881550b (diff)
Cygwin: automake: change @INCLUDES@ to @AM_CPPFLAGS@ to avoid warnings
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
Diffstat (limited to 'winsup/Makefile.am.common')
-rw-r--r--winsup/Makefile.am.common6
1 files changed, 3 insertions, 3 deletions
diff --git a/winsup/Makefile.am.common b/winsup/Makefile.am.common
index 884194df2..0238f65a9 100644
--- a/winsup/Makefile.am.common
+++ b/winsup/Makefile.am.common
@@ -9,7 +9,7 @@
flags_common=-Wall -Wstrict-aliasing -Wwrite-strings -fno-common -pipe -fbuiltin -fmessage-length=0
# compiler flags commonly used (but not for MinGW compilation, because they
-# include the Cygwin header paths via @INCLUDES@)
+# include the Cygwin header paths via @AM_CPPFLAGS@)
-cxxflags_common=$(INCLUDES) -fno-rtti -fno-exceptions -fno-use-cxa-atexit $(flags_common)
-cflags_common=$(INCLUDES) $(flags_common)
+cxxflags_common=$(AM_CPPFLAGS) -fno-rtti -fno-exceptions -fno-use-cxa-atexit $(flags_common)
+cflags_common=$(AM_CPPFLAGS) $(flags_common)