diff options
author | raveit <[email protected]> | 2013-06-26 13:43:12 +0200 |
---|---|---|
committer | raveit <[email protected]> | 2013-06-26 13:43:12 +0200 |
commit | 2e7857628db74c72e25c9a03898b1b1d62aa6924 (patch) | |
tree | 5ab2b4cfa621ec8761f144bc61dba0659f57501d | |
parent | 27da3a4c4e398d9a0eca099e9da6e8d742b0612f (diff) | |
download | caja-dropbox-2e7857628db74c72e25c9a03898b1b1d62aa6924.tar.bz2 caja-dropbox-2e7857628db74c72e25c9a03898b1b1d62aa6924.tar.xz |
fix automake-1.13 deprecations
-rwxr-xr-x | autogen.sh | 2 | ||||
-rw-r--r-- | configure.ac (renamed from configure.in) | 2 | ||||
-rw-r--r-- | src/Makefile.am | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -6,7 +6,7 @@ test -z "$srcdir" && srcdir=. PKG_NAME="caja-dropbox" -(test -f $srcdir/configure.in) || { +(test -f $srcdir/configure.ac) || { echo -n "**Error**: Directory "\`$srcdir\'" does not look like the" echo " top-level $PKG_NAME directory" exit 1 diff --git a/configure.in b/configure.ac index 5bb3250..71ababa 100644 --- a/configure.in +++ b/configure.ac @@ -2,7 +2,7 @@ AC_INIT([caja-dropbox], 0.7.1) -AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION) +AM_INIT_AUTOMAKE AC_PREFIX_DEFAULT(/usr) diff --git a/src/Makefile.am b/src/Makefile.am index 016ecb9..9c405de 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,4 +1,4 @@ -INCLUDES = \ +AM_CPPFLAGS = \ -I$(top_srcdir) \ -I$(top_builddir) |