From: Kenn H. <ke...@us...> - 2003-03-21 00:09:05
|
Update of /cvsroot/linux-vax/kernel-2.5 In directory sc8-pr-cvs1:/tmp/cvs-serv9692 Modified Files: Rules.make Log Message: Need the directory portion on listing file names now, since kbuild doesn't cwd into the subdirs any more Index: Rules.make =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/Rules.make,v retrieving revision 1.22 retrieving revision 1.23 diff -u -r1.22 -r1.23 --- Rules.make 20 Mar 2003 00:44:42 -0000 1.22 +++ Rules.make 21 Mar 2003 00:08:58 -0000 1.23 @@ -274,7 +274,7 @@ @/bin/true # define listing_o_c to get compiler listings from .c -> .o compilations -listing_o_c = -Wa,-adnhls=$(subst $(comma),_,$(*F)).lst -g +listing_o_c = -Wa,-adnhls=$(subst $(comma),_,$(@D)/$(*F)).lst -g # Compile C sources (.c) # --------------------------------------------------------------------------- |