don't fail if BR2_USE_UPDATES tries to update non-checkout
[buildroot.git] / package / gnuconfig / README.buildroot
blob507d100000e8aa5ac631dbff28bcbdc148fc91d2
1 --- ABOUT ---
2 This isnt a real package, it just exists to easily update the
3 config.sub / config.guess files in packages to the latest version
4 (since many bundled ones don't support the latest possible targets)
6 --- HOWTO ---
7 To use, just add this to your unpack rule in the package.mk:
8 $(CONFIG_UPDATE) $(PACKAGE_DIR)/
10 --- UPDATE ---
11 This is a CVS checkout of the config project, so just run `cvs up` 
12 to get the latest config.sub / config.guess files.
14 A few local customizations are used to support uClibc so you may
15 have to make sure they're still needed.  The patches are broken 
16 out in the patches/ dir to keep things simple.
18 -----8<-----
20 for i in patches/*patch
22   patch -R -p0 -i $i
23 done
24 cvs up
25 cvs diff -u
26 # fixup conflicts
28 for i in patches/*patch
30   patch -p0 -i $i
31 done