On 3/20/18 10:20 PM, Darrick J. Wong wrote: > From: Darrick J. Wong <darrick.wong@xxxxxxxxxx> > > Move the linux support code to libfrog, which should remove the final > dependency of libfrog on libxfs. libfrog is the runtime support library > anyway. > > Signed-off-by: Darrick J. Wong <darrick.wong@xxxxxxxxxx> sorry, my patch 5.5/4 probably kinda blew this up. We can fold it in, or whatever ... > --- > libfrog/Makefile | 4 + > libfrog/linux.c | 265 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ > libxfs/Makefile | 3 - > libxfs/linux.c | 265 ------------------------------------------------------ > 4 files changed, 269 insertions(+), 268 deletions(-) > create mode 100644 libfrog/linux.c > delete mode 100644 libxfs/linux.c > > diff --git a/libfrog/Makefile b/libfrog/Makefile > index 230b08f..e3065e6 100644 > --- a/libfrog/Makefile > +++ b/libfrog/Makefile > @@ -22,6 +22,10 @@ topology.c \ > util.c \ > workqueue.c > > +CFILES += $(PKG_PLATFORM).c > +PCFILES = linux.c > +LSRCFILES = $(shell echo $(PCFILES) | sed -e "s/$(PKG_PLATFORM).c//g") Ok so this doesn't really do anything at this point :) (LSRCFILES will always be empty) Just add linux.c to the main CFILES list and delete this The rest makes sense, I think, unless quota/linux.c should get the same treatment. Probably not. -Eric -- To unsubscribe from this list: send the line "unsubscribe linux-xfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html