Klaus Schmidinger wrote: > Oliver Endriss wrote: > > Holger Waechtler wrote: > > > Klaus Schmidinger wrote: > > > > I'm just trying to compile today's driver source and founs the > > > > following problems: > > > > > > > > - In a newly created directory I get the following warning when > > > > doing 'make' in the 'driver' subdirectory: > > > > > > > > make -C av7110 modules > > > > make[3]: Entering directory > > > > `/home/kls/vdr/DVB.2002-11-08/driver/av7110' Makefile:90: no > > > > file name for `-include' > > > > > > > > Apparently the line > > > > > > > > include $(wildcard *.d) > > > > > > the dependency files are generated at the first compilation run, > > > so you can safely ignore this warning. If you find a way to > > > suppress this message please let me know. > > > > Using '-include' instead of 'include, i.e. > > -include $(wildcard *.d) > > will do the trick. > > Not if '$(wildcard *.d)' doesn't return any names. > '-include' only suppresses error messages if any of the _given_ > files doesn't exist.
Yes, you are right. But if you add a single blank to the end of the line, it will work: '-include $(wildcard *.d) ' (Obviously, I did this by accident when I used it some time ago :-) Oliver -- Info: To unsubscribe send a mail to [EMAIL PROTECTED] with "unsubscribe linux-dvb" as subject.
