
On 26/02/2013 16:36, Guillaume Lazzara wrote: [...]
diff --git a/scribo/common.mk b/scribo/common.mk index 874f313..1c5c57d 100644 --- a/scribo/common.mk +++ b/scribo/common.mk @@ -24,5 +24,5 @@ AM_DEFAULT_SOURCE_EXT = .cc
# Add paths to Scribo's headers. AM_CPPFLAGS = -I$(top_srcdir)/ -I$(top_builddir)/ \ - -I$(top_srcdir)/milena -I$(top_builddir)/milena \ - -I$(top_srcdir)/scribo -I$(top_builddir)/scribo + -I$(abs_top_srcdir)/scribo -I$(abs_top_builddir)/scribo \ + -I$(abs_top_srcdir)/milena -I$(abs_top_builddir)/milena
I also think this order is more logical (in scribo/common.mk). Did you have to swap these paths because of a compilation problem or was it just for stylistic purpose? Also the use of `$(abs_top_srcdir)' shall not be needed here. Is it really necessary?