* typo: HOSTCCFLAGS instead of HOSTCFLAGS in lib/Makefile
@ 2004-02-10 23:31 Peter Cordes
2004-02-14 12:10 ` Adrian Bunk
0 siblings, 1 reply; 2+ messages in thread
From: Peter Cordes @ 2004-02-10 23:31 UTC (permalink / raw)
To: linux-kernel
[-- Attachment #1: Type: text/plain, Size: 633 bytes --]
In lib/Makefile in Linux 2.4.24, near the end there is:
gen_crc32table: gen_crc32table.c
$(HOSTCC) $(HOSTCCFLAGS) -o $@ $<
^^
It should be HOSTCFLAGS, not HOSTCCFLAGS.
There aren't any other instances of HOSTCCFLAGS in 2.4.24, or any in 2.6.1.
please CC on replies, since I'm not subscribed.
--
#define X(x,y) x##y
Peter Cordes ; e-mail: X(peter@cor , des.ca)
"The gods confound the man who first found out how to distinguish the hours!
Confound him, too, who in this place set up a sundial, to cut and hack
my day so wretchedly into small pieces!" -- Plautus, 200 BC
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 351 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: typo: HOSTCCFLAGS instead of HOSTCFLAGS in lib/Makefile
2004-02-10 23:31 typo: HOSTCCFLAGS instead of HOSTCFLAGS in lib/Makefile Peter Cordes
@ 2004-02-14 12:10 ` Adrian Bunk
0 siblings, 0 replies; 2+ messages in thread
From: Adrian Bunk @ 2004-02-14 12:10 UTC (permalink / raw)
To: Peter Cordes, Marcelo Tosatti; +Cc: linux-kernel
On Tue, Feb 10, 2004 at 07:31:02PM -0400, Peter Cordes wrote:
>
> In lib/Makefile in Linux 2.4.24, near the end there is:
> gen_crc32table: gen_crc32table.c
> $(HOSTCC) $(HOSTCCFLAGS) -o $@ $<
> ^^
> It should be HOSTCFLAGS, not HOSTCCFLAGS.
>
> There aren't any other instances of HOSTCCFLAGS in 2.4.24, or any in 2.6.1.
Nice spotting!
@Marcelo:
Please apply the patch below.
> please CC on replies, since I'm not subscribed.
cu
Adrian
--- linux-2.4.25-rc2-full/lib/Makefile.old 2004-02-14 13:02:36.000000000 +0100
+++ linux-2.4.25-rc2-full/lib/Makefile 2004-02-14 13:02:47.000000000 +0100
@@ -42,7 +42,7 @@
crc32.o: crc32table.h
gen_crc32table: gen_crc32table.c
- $(HOSTCC) $(HOSTCCFLAGS) -o $@ $<
+ $(HOSTCC) $(HOSTCFLAGS) -o $@ $<
crc32table.h: gen_crc32table
./$< > $@
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2004-02-14 12:10 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-02-10 23:31 typo: HOSTCCFLAGS instead of HOSTCFLAGS in lib/Makefile Peter Cordes
2004-02-14 12:10 ` Adrian Bunk
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®