Dmitry Sokolov wrote: > Hello! > > While installing rules: > > install -m644 -v rules/packages/64-*.rules /lib/udev/rules.d/ > install -m644 -v rules/packages/40-pilot-links.rules /lib/udev/rules.d/ > install -m644 -v rules/packages/40-isdn.rules /lib/udev/rules.d/ > > the result: > > install: target `/lib/udev/rules.d/ is not a directory: No such file or > directory > > I don't known how to create directory with right permissions. > My question is: How to create directory with right permissions?
/lib/udev/rules.d/ should have been installed automatically as a part of 'make install'. It looks like you skipple that instruction. ... test -z "/lib/udev/rules.d" || /bin/mkdir -p "/lib/udev/rules.d" ... -- Bruce -- http://linuxfromscratch.org/mailman/listinfo/lfs-support FAQ: http://www.linuxfromscratch.org/lfs/faq.html Unsubscribe: See the above information page
