diff options
author | Felix Fietkau <nbd@openwrt.org> | 2016-02-26 20:47:10 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2016-02-26 20:47:10 +0000 |
commit | f026f5c780bf0dd359d2de9a94ddd72bef347c2c (patch) | |
tree | 4630938fc1453183cf14db37b04c7ce20453e287 /include | |
parent | eced3b3a355199e1a1b51cba41689d9336d95c40 (diff) | |
download | upstream-f026f5c780bf0dd359d2de9a94ddd72bef347c2c.tar.gz upstream-f026f5c780bf0dd359d2de9a94ddd72bef347c2c.tar.bz2 upstream-f026f5c780bf0dd359d2de9a94ddd72bef347c2c.zip |
include/target.mk: fix profile defaults
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 48807
Diffstat (limited to 'include')
-rw-r--r-- | include/target.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/target.mk b/include/target.mk index 42febfca7b..dbb6327ad3 100644 --- a/include/target.mk +++ b/include/target.mk @@ -56,14 +56,14 @@ DEFAULT_PACKAGES += $(DEFAULT_PACKAGES.$(DEVICE_TYPE)) filter_packages = $(filter-out -% $(patsubst -%,%,$(filter -%,$(1))),$(1)) extra_packages = $(if $(filter wpad-mini wpad nas,$(1)),iwinfo) -define Profile/Default +define ProfileDefault NAME:= PACKAGES:= endef ifndef Profile define Profile - $(eval $(call Profile/Default)) + $(eval $(call ProfileDefault)) $(eval $(call Profile/$(1))) dumpinfo : $(call shexport,Profile/$(1)/Config) dumpinfo : $(call shexport,Profile/$(1)/Description) |