|
Last change
on this file since 219 was
219,
checked in by stappers, 2 years ago
|
|
Disable openwrt packages with a SED Script
|
|
File size:
957 bytes
|
| Line | |
|---|
| 1 | --- include/toplevel.mk.org 2010-01-02 00:28:44.000000000 +0100 |
|---|
| 2 | +++ include/toplevel.mk 2010-01-02 00:14:07.000000000 +0100 |
|---|
| 3 | @@ -49,6 +49,12 @@ |
|---|
| 4 | f=tmp/.$${type}info; t=tmp/.config-$${type}.in; \ |
|---|
| 5 | [ "$$t" -nt "$$f" ] || ./scripts/metadata.pl $${type}_config "$$f" > "$$t" || { rm -f "$$t"; echo "Failed to build $$t"; false; break; }; \ |
|---|
| 6 | done |
|---|
| 7 | + # DebWrt: we don't need to build any packages by default, so we disable them |
|---|
| 8 | + # all. This allows us to have fine control over which packages we |
|---|
| 9 | + # want to build. |
|---|
| 10 | + sed --file=./scripts/debwrt_disables_packages.sed \ |
|---|
| 11 | + tmp/.config-package.in > tmp/.config-package.in.new |
|---|
| 12 | + mv tmp/.config-package.in.new tmp/.config-package.in |
|---|
| 13 | ./scripts/metadata.pl package_mk tmp/.packageinfo > tmp/.packagedeps || { rm -f tmp/.packagedeps; false; } |
|---|
| 14 | touch $(TOPDIR)/tmp/.build |
|---|
| 15 | |
|---|
| 16 | --- /dev/null |
|---|
| 17 | +++ ./scripts/debwrt_disables_packages.sed generated |
|---|
| 18 | @@ -0,0 +1,3 @@ |
|---|
| 19 | +# |
|---|
| 20 | +s/default [ynm]/default n/g ; |
|---|
| 21 | +# |
|---|
Note: See
TracBrowser
for help on using the repository browser.