[pisa-src] r1028 - in trunk: community-operator pisacd pisand pisasd test

  • From: Diego Biurrun <diego@xxxxxxxxxx>
  • To: pisa-src@xxxxxxxxxxxxx
  • Date: Tue, 06 Oct 2009 16:42:46 +0200

Author: biurrun
Date: Tue Oct  6 16:42:45 2009
New Revision: 1028

Log:
Do not hardcode include path that is set in configure.ac.

Modified:
   trunk/community-operator/Makefile.am
   trunk/pisacd/Makefile.am
   trunk/pisand/Makefile.am
   trunk/pisasd/Makefile.am
   trunk/test/Makefile.am

Modified: trunk/community-operator/Makefile.am
==============================================================================
--- trunk/community-operator/Makefile.am        Tue Oct  6 16:05:05 2009        
(r1027)
+++ trunk/community-operator/Makefile.am        Tue Oct  6 16:42:45 2009        
(r1028)
@@ -5,7 +5,7 @@
 
 AUTOMAKE_OPTIONS = foreign
 
-INCLUDES = -I$(top_srcdir)/include
+INCLUDES = -I$(PISA_COMMON_INCLUDES)
 
 bin_PROGRAMS = co_server co_client
 

Modified: trunk/pisacd/Makefile.am
==============================================================================
--- trunk/pisacd/Makefile.am    Tue Oct  6 16:05:05 2009        (r1027)
+++ trunk/pisacd/Makefile.am    Tue Oct  6 16:42:45 2009        (r1028)
@@ -6,7 +6,7 @@
 AUTOMAKE_OPTIONS = foreign
 
 CFLAGS = -Wall -g
-INCLUDES = -I$(top_srcdir)/include
+INCLUDES = -I$(PISA_COMMON_INCLUDES)
 
 bin_PROGRAMS = pisacdconf
 sbin_PROGRAMS = pisacd

Modified: trunk/pisand/Makefile.am
==============================================================================
--- trunk/pisand/Makefile.am    Tue Oct  6 16:05:05 2009        (r1027)
+++ trunk/pisand/Makefile.am    Tue Oct  6 16:42:45 2009        (r1028)
@@ -6,7 +6,7 @@
 AUTOMAKE_OPTIONS = foreign
 
 CFLAGS = -Wall -g
-INCLUDES = -I$(top_srcdir)/include
+INCLUDES = -I$(PISA_COMMON_INCLUDES)
 
 sbin_PROGRAMS = pisand
 

Modified: trunk/pisasd/Makefile.am
==============================================================================
--- trunk/pisasd/Makefile.am    Tue Oct  6 16:05:05 2009        (r1027)
+++ trunk/pisasd/Makefile.am    Tue Oct  6 16:42:45 2009        (r1028)
@@ -6,7 +6,7 @@
 AUTOMAKE_OPTIONS = foreign
 
 CFLAGS = -Wall -g
-INCLUDES = -I$(top_srcdir)/include
+INCLUDES = -I$(PISA_COMMON_INCLUDES)
 
 bin_PROGRAMS = pisasdconf
 sbin_PROGRAMS = pisasd

Modified: trunk/test/Makefile.am
==============================================================================
--- trunk/test/Makefile.am      Tue Oct  6 16:05:05 2009        (r1027)
+++ trunk/test/Makefile.am      Tue Oct  6 16:42:45 2009        (r1028)
@@ -8,7 +8,7 @@
 
 CFLAGS = -Wall -g
 
-INCLUDES = -I$(top_srcdir)/include
+INCLUDES = -I$(PISA_COMMON_INCLUDES)
 INCLUDES += -I@PISA_PISACD_INCLUDES@
 INCLUDES += -I@PISA_PISAND_INCLUDES@
 INCLUDES += -I@PISA_PISASD_INCLUDES@

Other related posts:

  • » [pisa-src] r1028 - in trunk: community-operator pisacd pisand pisasd test - Diego Biurrun