[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#7661: [PATCH] {maint} docs: fix blunder in example about python exte
From: |
Stefano Lattarini |
Subject: |
bug#7661: [PATCH] {maint} docs: fix blunder in example about python extension modules (was: Re: bug#7661: docs: typo in documentation about python extension modules?) |
Date: |
Sat, 18 Dec 2010 12:20:20 +0100 |
User-agent: |
KMail/1.13.3 (Linux/2.6.30-2-686; KDE/4.4.4; i686; ; ) |
On Saturday 18 December 2010, Ralf Wildenhues wrote:
> * Stefano Lattarini wrote on Fri, Dec 17, 2010 at 02:51:12PM CET:
> > pyexec_LTLIBRARIES = quaternion.la
> > quaternion_SOURCES = quaternion.c support.c support.h
> > quaternion_la_LDFLAGS = -avoid-version -module
>
> > Shouldn't `quaternion_la_SOURCES' be used instead of `quaternion_SOURCES'?
>
> Yep. Fix is preapproved.
>
> Thanks,
> Ralf
>
Below is what I pushed.
Thanks,
Stefano
-*-*-*-
docs: fix blunder in example about python extension modules
* doc/automake.texi (Python): Use `quaternion_la_SOURCES',
not `quaternion_SOURCES', to declare the sources of python
extension module `quaternion.la'.
---
ChangeLog | 7 +++++++
doc/automake.texi | 2 +-
2 files changed, 8 insertions(+), 1 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 3eee3a7..69286c9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2010-12-18 Stefano Lattarini <address@hidden>
+
+ docs: fix blunder in example about python extension modules
+ * doc/automake.texi (Python): Use `quaternion_la_SOURCES',
+ not `quaternion_SOURCES', to declare the sources of python
+ extension module `quaternion.la'.
+
2010-12-16 Stefano Lattarini <address@hidden>
docs: list LTLIBRARIES among Automake primaries
diff --git a/doc/automake.texi b/doc/automake.texi
index 227b1ba..9c2074b 100644
--- a/doc/automake.texi
+++ b/doc/automake.texi
@@ -7632,7 +7632,7 @@ as follows to Automake:
@example
pyexec_LTLIBRARIES = quaternion.la
-quaternion_SOURCES = quaternion.c support.c support.h
+quaternion_la_SOURCES = quaternion.c support.c support.h
quaternion_la_LDFLAGS = -avoid-version -module
@end example
--
1.7.1