blob: 07e80cbdca3c5b13df16d7226d66b2d56adc5d4f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
From: Pavel Sobolev <contact@paveloom.dev>
Subject: [PATCH] Don't build examples.
This also allows us to bypass the error caused by `--disable-static`
being enabled, see the attached bug ticket.
Bug: https://github.com/google/ios-webkit-debug-proxy/issues/399
Signed-off-by: Pavel Sobolev <contact@paveloom.dev>
--- a/Makefile.am
+++ b/Makefile.am
@@ -2,4 +2,4 @@
# Copyright 2012 Google Inc. wrightt@google.com
AUTOMAKE_OPTIONS = foreign
-SUBDIRS = src include examples
+SUBDIRS = src include
--- a/configure.ac
+++ b/configure.ac
@@ -87,7 +87,7 @@ fi
AC_CHECK_FUNCS([memmove memset regcomp select socket strcasecmp strncasecmp strchr strdup strndup strrchr strstr strtol strcasestr getline])
-AC_CONFIG_FILES([Makefile src/Makefile include/Makefile examples/Makefile])
+AC_CONFIG_FILES([Makefile src/Makefile include/Makefile])
CFLAGS="${CFLAGS} -Wall -Werror"
|