From 3712e587df38d9ff72437bd7b38514d83fa22232 Mon Sep 17 00:00:00 2001
From: Ludovic Rousseau <ludovic.rousseau@gmail.com>
Date: Fri, 1 Jun 2012 11:38:36 +0200
Subject: [PATCH 2/4] Fix autoreconf warning

$ autoreconf -vis -Wall
examples/Makefile.am:1: `INCLUDES' is the old name for `AM_CPPFLAGS' (or `*_CPPFLAGS')
---
 examples/Makefile.am |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/examples/Makefile.am b/examples/Makefile.am
index a5bad99..6921484 100644
--- a/examples/Makefile.am
+++ b/examples/Makefile.am
@@ -1,4 +1,4 @@
-INCLUDES = -I$(top_srcdir)/libusb
+AM_CPPFLAGS = -I$(top_srcdir)/libusb
 LDADD = ../libusb/libusb-1.0.la
 
 noinst_PROGRAMS = listdevs xusb
-- 
1.7.10

