OpenWrt – Diff between revs 2 and 3
?pathlinks?
Rev 2 | Rev 3 | |||
---|---|---|---|---|
Line 4... | Line 4... | |||
4 | # |
4 | # |
|
5 | # This is free software, licensed under the GNU General Public License v2. |
5 | # This is free software, licensed under the GNU General Public License v2. |
|
6 | # See /LICENSE for more information. |
6 | # See /LICENSE for more information. |
|
7 | # |
7 | # |
|
Line 8... | Line 8... | |||
8 | |
8 | |
|
Line 9... | Line 9... | |||
9 | -include $(TMP_DIR)/.packageauxvars |
9 | -include $(TMP_DIR)/.packagesubdirs |
|
10 | |
10 | |
|
Line 11... | Line 11... | |||
11 | FEEDS_INSTALLED:=$(notdir $(wildcard $(TOPDIR)/package/feeds/*)) |
11 | FEEDS_INSTALLED:=$(notdir $(wildcard $(TOPDIR)/package/feeds/*)) |
|
Line 39... | Line 39... | |||
39 | $(foreach feed,$(FEEDS_AVAILABLE), \ |
39 | $(foreach feed,$(FEEDS_AVAILABLE), \ |
|
40 | $(if $(CONFIG_FEED_$(feed)), \ |
40 | $(if $(CONFIG_FEED_$(feed)), \ |
|
41 | echo '$(if $(filter m,$(CONFIG_FEED_$(feed))),# )src/gz %d_$(feed) %U/packages/%A/$(feed)';)))) \ |
41 | echo '$(if $(filter m,$(CONFIG_FEED_$(feed))),# )src/gz %d_$(feed) %U/packages/%A/$(feed)';)))) \ |
|
42 | ) >> $(1) |
42 | ) >> $(1) |
|
43 | endef |
43 | endef |
|
44 | |
- | ||
45 | # 1: package name |
- | ||
46 | define GetABISuffix |
- | ||
47 | $(if $(filter-out kmod-%,$(1)),$(if $(Package/$(1)/abiversion),$(if $(filter %0 %1 %2 %3 %4 %5 %6 %7 %8 %9,$(1)),-)$(Package/$(1)/abiversion))) |
- | ||
48 | endef |
- |