[patch] 2.3.51 -- silly little makefile patch

From: david parsons (orc@pell.portland.or.us)
Date: Tue Mar 14 2000 - 14:33:25 EST


This patch replaces ``ls -1 -U'' with ``ls -1'' in the toplevel
makefile, because the -U option to ls doesn't work on Mastodon (BSD ls)
and, in any case, the sort (or lack thereof) order is blown away by the
sort that's immediately below it in the pipeline.

                  ____
    david parsons \bi/ I'd be terrified to find a system where this patch
                   \/ didn't work.

--- ./Makefile.orig Sat Mar 11 08:44:46 2000
+++ ./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 : Wed Mar 15 2000 - 21:00:28 EST