(Third in a series)
The toplevel makefile uses ``ls -U'' as part of a pipeline for
figuring out how to install modules. This appears to be
GNU-specific, but it's fairly meaningless because the output
is piped into sort which then mangles the (unsorted) order
of its output.
____
david parsons \bi/ ls -f
\/
--- linux/Makefile.orig Sat Mar 11 08:44:46 2000
+++ linux/Makefile Sat Mar 11 08:49:03 2000
@@ -417,7 +417,7 @@
if [ -f PCMCIA_CHAR_MODULES ]; then inst_mod PCMCIA_CHAR_MODULES pcmcia; fi; \
if [ -f PCMCIA_SCSI_MODULES ]; then inst_mod PCMCIA_SCSI_MODULES pcmcia; fi; \
\
- ls -1 -U *.o | sort > $$MODLIB/.allmods; \
+ ls -1 *.o | sort > $$MODLIB/.allmods; \
echo $$MODULES | tr ' ' '\n' | sort | comm -23 $$MODLIB/.allmods - > $$MODLIB/.misc; \
if [ -s $$MODLIB/.misc ]; then inst_mod $$MODLIB/.misc misc; fi; \
rm -f $$MODLIB/.misc $$MODLIB/.allmods; \
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.rutgers.edu
Please read the FAQ at http://www.tux.org/lkml/
This archive was generated by hypermail 2b29 : Fri Apr 07 2000 - 21:00:13 EST