summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Josefsson <simon@josefsson.org>2008-09-01 09:48:04 +0200
committerSimon Josefsson <simon@josefsson.org>2008-09-01 09:48:04 +0200
commit0c83d7c014106e25dc85d0455ca19ab9fec27829 (patch)
treedb421d26f95c488501caedb2463474ddcf8945a8
parentc0e51d6db1f14553defeee0a2a84b25fdccd47bc (diff)
downloadgnutls-0c83d7c014106e25dc85d0455ca19ab9fec27829.tar.gz
Fixes.
-rw-r--r--lib/minitasn1/Makefile.am22
-rw-r--r--lib/openpgp/Makefile.am2
2 files changed, 23 insertions, 1 deletions
diff --git a/lib/minitasn1/Makefile.am b/lib/minitasn1/Makefile.am
index 7f6860842d..a03c6f0ecc 100644
--- a/lib/minitasn1/Makefile.am
+++ b/lib/minitasn1/Makefile.am
@@ -1,3 +1,25 @@
+## Process this file with automake to produce Makefile.in
+# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation
+#
+# Author: Nikos Mavrogiannopoulos
+#
+# This file is part of GNUTLS.
+#
+# The GNUTLS library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public License
+# as published by the Free Software Foundation; either version 2.1 of
+# the License, or (at your option) any later version.
+#
+# The GNUTLS library is distributed in the hope that it will be
+# useful, but WITHOUT ANY WARRANTY; without even the implied warranty
+# of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with the GNUTLS library; if not, write to the Free
+# Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+# MA 02110-1301, USA
+
AM_CPPFLAGS = -I$(top_srcdir)/lib -I$(top_srcdir)/lgl -I$(top_builddir)/lgl
noinst_LTLIBRARIES = libminitasn1.la
diff --git a/lib/openpgp/Makefile.am b/lib/openpgp/Makefile.am
index cc2f798af4..7e42430b15 100644
--- a/lib/openpgp/Makefile.am
+++ b/lib/openpgp/Makefile.am
@@ -41,7 +41,7 @@ EXTRA_DIST = pgp-api.texi
pgp-api.texi: $(COBJECTS)
@echo "" > pgp-api.texi
- @for i in ../gnutls_openpgp.c $(COBJECTS); do \
+ @for i in $(COBJECTS); do \
echo -n "Creating documentation for file $$i... " && \
$(top_srcdir)/doc/scripts/gdoc -texinfo $$i >> pgp-api.texi && \
echo "ok"; \