Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
libsmartcols/src/Makemodule.am: ensure filter-scanner/paser.c file is…
… newer than the .h file In released tarball, for filter-scanner/parser, the .h and the .c file has the same mtime. The 'make' tool thinks .h is newer than the .c file, thus deciding to remake it. This will not only cause unnecessary rebuild, but also parallel make error. For example, after 'make', when running 'make install', the libmount.la and findmnt are both rebuilt and findmnt building will somethings error out complaining 'libmount.so: no such file or directory' or 'libmount.so: file format not recognized'. Touch the generated .c file to ensure it's newer than the .h file. In this way, in new released tarballs in the future, there will be no unnecessary remake. fixes util-linux#3061 Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
- Loading branch information