[PATCH] trivial little Makefile patch (2.3.49-2)

From: david parsons (orc@pell.portland.or.us)
Date: Wed Mar 01 2000 - 12:45:44 EST


make modules_install does ls -U; This doesn't work too well on systems
that have Berkeley ls installed. Since -U just means ``do not sort'',
this little patch takes it away and lets me continue to build 2.3 kernels
on my Mastodon machines.

                  ____
    david parsons \bi/ Keeping the GNUisms to gcc and bash is better.
                   \/

--- linux-2.3.49-2/Makefile.orig Wed Mar 1 09:33:31 2000
+++ linux-2.3.49-2/Makefile Wed Mar 1 09:34:19 2000
@@ -413,7 +413,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 : Tue Mar 07 2000 - 21:00:10 EST