On Thu, 2008-09-04 at 15:43 -0500, Serge E. Hallyn wrote: > Quoting Matt Helsley ([EMAIL PROTECTED]): > > Make these rules a tiny bit more generic using the automatic $@ variable. > > This means anyone copying this line is less likely to make copy/paste > > errors. > > > > Signed-off-by: Matt Helsley <[EMAIL PROTECTED]> > > Well, ok... I guess I see no reason not to > > Serge Hallyn <[EMAIL PROTECTED]>
Merged-By: Subrata Modak <[EMAIL PROTECTED]> > > > Cc: Veerendra Chandrappa <[EMAIL PROTECTED]> > > Cc: Sudhir Kumar15 <[EMAIL PROTECTED]> > > Cc: Subrata Modak <[EMAIL PROTECTED]> > > Cc: Serge E. Hallyn <[EMAIL PROTECTED]> > > --- > > testcases/kernel/containers/Makefile | 4 ++-- > > 1 file changed, 2 insertions(+), 2 deletions(-) > > > > Index: ltp-intermediate-20080820/testcases/kernel/containers/Makefile > > =================================================================== > > --- ltp-intermediate-20080820.orig/testcases/kernel/containers/Makefile > > +++ ltp-intermediate-20080820/testcases/kernel/containers/Makefile > > @@ -35,10 +35,10 @@ install: check_for_unshare > > @set -e; ln -f check_for_unshare ../../bin/check_for_unshare; \ > > ln -f container_test.sh ../../bin/container_test.sh; \ > > if './check_for_unshare' > /dev/null 2>&1; then \ > > - for i in $(SUBDIRS); do $(MAKE) -C $$i install ; done; \ > > + for i in $(SUBDIRS); do $(MAKE) -C $$i $@ ; done; \ > > chmod ugo+x container_test.sh; \ > > else echo "system does not support unshare"; true; fi > > > > clean: > > - @set -e; for i in $(SUBDIRS); do $(MAKE) -C $$i clean ; done > > + @set -e; for i in $(SUBDIRS); do $(MAKE) -C $$i $@ ; done > > rm -f check_for_unshare > > > > -- ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ Ltp-list mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ltp-list
