elastio / elastio-snap

kernel module for taking block-level snapshots and incremental backups of Linux block devices
GNU General Public License v2.0
21 stars 6 forks source link

Fix Makefile to call genconfig.sh only once #281

Closed skypodolsky closed 1 year ago

skypodolsky commented 1 year ago

If called make -B after make clean, the behavior of Makefile was a bit inaccurate as we didn't track the kernel-config.h dependency for the driver target. This caused the driver target to create kernel-config.h underneath and also forced the root Makefile to regenerate it as a "fresh one". Hence, the script was called twice, which took twice more time.

Closes #280