[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: possible doc bug
From: |
Alexandre Duret-Lutz |
Subject: |
Re: possible doc bug |
Date: |
Wed, 13 Nov 2002 22:04:20 +0100 |
User-agent: |
Gnus/5.090008 (Oort Gnus v0.08) Emacs/20.7 (i386-debian-linux-gnu) |
>>> "Mike" == Mike Castle <address@hidden> writes:
[...]
Mike> Should the `hello_cond +=' be `hello_SOURCES +='?
Yes. Thank you!
I'm checking this in. (branch-1-7 & HEAD)
2002-11-13 Alexandre Duret-Lutz <address@hidden>
* automake.texi (Conditional Sources): Fix the `+=' example.
Reported by Mike Castle.
Index: automake.texi
===================================================================
RCS file: /cvs/automake/automake/automake.texi,v
retrieving revision 1.305.2.2
diff -u -r1.305.2.2 automake.texi
--- automake.texi 7 Nov 2002 10:50:34 -0000 1.305.2.2
+++ automake.texi 13 Nov 2002 21:00:55 -0000
@@ -2255,9 +2255,9 @@
bin_PROGRAMS = hello
hello_SOURCES = hello-common.c
if LINUX
-hello_cond += hello-linux.c
+hello_SOURCES += hello-linux.c
else
-hello_cond += hello-generic.c
+hello_SOURCES += hello-generic.c
endif
@end example
--
Alexandre Duret-Lutz
- possible doc bug, Mike Castle, 2002/11/09
- Re: possible doc bug,
Alexandre Duret-Lutz <=