Trivial patch: linux-2.5.20/Rules.make cleanup

Adam J. Richter (adam@yggdrasil.com)
Mon, 3 Jun 2002 00:28:18 -0700


There is a stupid make rule in linux-2.5.20/Rules.make
that uses the "@" prefix to disable command echoing, uses that
for a command to echo the command it is going to run, and the
uses the "@" prefix again to execute the same command with.
The following patch replaces those two lines with one
that just executes the command in the normal way, which "make"
will echo anyhow.

Adam J. Richter __ ______________ 575 Oroville Road
adam@yggdrasil.com \ / Milpitas, California 95035
+1 408 309-6081 | g g d r a s i l United States of America
"Free Software For The Rest Of Us."

--- linux-2.5.20/Rules.make 2002-06-02 18:44:47.000000000 -0700
+++ linux/Rules.make 2002-06-02 23:39:37.000000000 -0700
@@ -315,8 +315,7 @@
$(GENKSYMS) $(genksyms_smp_prefix) -k $(VERSION).$(PATCHLEVEL).$(SUBLEVEL) > $@.tmp

$(MODINCL)/$(MODPREFIX)%.ver: %.c FORCE
- @echo $(cmd_create_ver)
- @$(cmd_create_ver)
+ $(cmd_create_ver)
@if [ -r $@ ] && cmp -s $@ $@.tmp; then \
echo $@ is unchanged; rm -f $@.tmp; \
else \

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/