f1380c6756
Automatic submission by obs-autosubmit OBS-URL: https://build.opensuse.org/request/show/158228 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libvmime?expand=0&rev=7
42 lines
1.0 KiB
Diff
42 lines
1.0 KiB
Diff
From: Jan Engelhardt <jengelh@inai.de>
|
|
Date: 2013-03-03 20:43:59.641072360 +0100
|
|
|
|
AM_INIT_AUTOMAKE takes one argument.
|
|
AM_CONFIG_HEADERS is obsolete.
|
|
|
|
---
|
|
Makefile.am | 3 ---
|
|
configure.in | 4 ++--
|
|
2 files changed, 2 insertions(+), 5 deletions(-)
|
|
|
|
Index: vmime/Makefile.am
|
|
===================================================================
|
|
--- vmime.orig/Makefile.am
|
|
+++ vmime/Makefile.am
|
|
@@ -10,9 +10,6 @@ SUBDIRS = src $(INCLUDE) $(BINDING)
|
|
|
|
DIST_SUBDIRS = $(SUBDIRS) autotools
|
|
|
|
-#AUTOMAKE_OPTIONS = dist-bzip2
|
|
-AUTOMAKE_OPTIONS = no-dist
|
|
-
|
|
pkgconfigdir = $(VMIME_PKGCONFIGDIR)
|
|
pkgconfig_DATA = $(GENERIC_VERSIONED_LIBRARY_NAME).pc
|
|
|
|
Index: vmime/configure.in
|
|
===================================================================
|
|
--- vmime.orig/configure.in
|
|
+++ vmime/configure.in
|
|
@@ -36,9 +36,9 @@ AC_SUBST(LIBRARY_RELEASE)
|
|
AC_CANONICAL_HOST
|
|
AC_CANONICAL_TARGET
|
|
|
|
-AM_INIT_AUTOMAKE(vmime, 0.9.2)
|
|
+AM_INIT_AUTOMAKE([no-dist])
|
|
AC_CONFIG_SRCDIR([src/base.cpp])
|
|
-AM_CONFIG_HEADER([config.h])
|
|
+AC_CONFIG_HEADERS([config.h])
|
|
|
|
AM_MAINTAINER_MODE
|
|
|