This is the bug/patch tracker for Rockbox. Click here for more information.
Quick links: Bugs · Patches · Rockbox frontpage
FS#9936 - When only config-*.h is changed, apps/features is not updated.
Attached to Project:
Rockbox
Opened by Yoshihisa Uchida (Uchida) - Sunday, 22 February 2009, 06:16 GMT+2
Last edited by Björn Stenberg (zagor) - Friday, 21 August 2009, 00:27 GMT+2
Opened by Yoshihisa Uchida (Uchida) - Sunday, 22 February 2009, 06:16 GMT+2
Last edited by Björn Stenberg (zagor) - Friday, 21 August 2009, 00:27 GMT+2
|
DetailsWhen firmware/export/config-*.h is changed, $(BUILDDIR)/apps/features might have to be changed. (eg. svn. 20076)
However, even if config-*.h is updated, features is not updated because it is not checked whether config-*.h was updated in apps.make. |
This task depends upon
Closed by Björn Stenberg (zagor)
Friday, 21 August 2009, 00:27 GMT+2
Reason for closing: Fixed
Additional comments about closing: Fixed (with a bit of a kludge, but still) in r22444.
Friday, 21 August 2009, 00:27 GMT+2
Reason for closing: Fixed
Additional comments about closing: Fixed (with a bit of a kludge, but still) in r22444.
$ make
Generating dependencies
make: *** No rule to make target `/home/Boris/rockbox-svn-trunk/firmware/export/config-gigabeatf.h', needed by `/home/Boris/rockbox-svn-trunk/gbf/apps/features'. Stop.
You can see the mismatches via the following Bash command:
diff <(find firmware/export -name "config-*.h" -printf "%f\n" | sort) <(sed -n "s/^.*modelname=\"\([^\"]*\)\".*$/config-\1.h/p;" tools/configure | sort)