lkml.org 
[lkml]   [1998]   [Oct]   [7]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
SubjectRe: The /tmp and modules_install saga
From
Date
"Nicholas J. Leon" <nicholas@binary9.net> writes:

|> How about the following (please note that using my _exact_ implementation
|> would require fixing nls to put its modules into FS_MODULES and
|> NET_MISC_MODULES be folded into NET_MODULES -- unless we like having an
|> modules/nls and modules/net_misc directory).
|>
|> modules_install:
|> @(cd modules; \
|> MODLIB=$(INSTALL_MOD_PATH)/lib/modules/$(VERSION).$(PATCHLEVEL).$(SUBLEVEL);\
|> ALLMODS=`ls *.o`; \

You can use ALLMODES=`echo *.o` instead.

|> echo "Installing modules under $$MODLIB"; \
|> for d in `ls *_MODULES`; do \

Change that to
for d in *_MODULES; do \
to avoid the useless use of command substitution.

--
Andreas Schwab "And now for something
schwab@issan.cs.uni-dortmund.de completely different"
schwab@gnu.org

-
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/

\
 
 \ /
  Last update: 2005-03-22 13:44    [W:0.092 / U:1.584 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site