diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2007-08-05 11:30:55 +0300 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2007-08-05 11:30:55 +0300 |
commit | 8d2b416782e35fc439401f35166091fe0f9de038 (patch) | |
tree | d5bcfc4878040d9e90fd62b8a0dd651ea9e7cef8 /misc | |
parent | 6c4b0fc9e44ea3b9449e171404c1b2037d15d01e (diff) | |
download | librpm-tizen-8d2b416782e35fc439401f35166091fe0f9de038.tar.gz librpm-tizen-8d2b416782e35fc439401f35166091fe0f9de038.tar.bz2 librpm-tizen-8d2b416782e35fc439401f35166091fe0f9de038.zip |
Automake cleanups.
- Replace INCLUDES with AM_CPPFLAGS
(INCLUDES has been replaced by AM_CPPFLAGS and is deprecated in
modern automakes for several years)
- Require autoconf-2.61 and automake-1.10
(already required by autogen.sh)
- update mkinstalldirs with the version from automake-1.10
(The version in rpm is ancient and known to be bugged)
Patch from Ralf Corsepius
Diffstat (limited to 'misc')
-rw-r--r-- | misc/Makefile.am | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/misc/Makefile.am b/misc/Makefile.am index 777ade763..b5f92eeff 100644 --- a/misc/Makefile.am +++ b/misc/Makefile.am @@ -1,8 +1,6 @@ # Makefile for misc library. -AUTOMAKE_OPTIONS = 1.4 foreign - -INCLUDES = -I. -I$(top_srcdir) @INCPATH@ +AM_CPPFLAGS = -I. -I$(top_srcdir) @INCPATH@ EXTRA_DIST = \ alloca.c basename.c err.c error.c \ |