1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-06-25 09:27:18 +03:00

[include] version.mk: ensure that %S is always populated with a subtarget identifier, fallback to "generic" if no subtarget exists

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@33534 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
jow 2012-09-24 18:26:48 +00:00
parent 537aa8de44
commit 639abfa638

View File

@ -40,4 +40,4 @@ VERSION_SED:=$(SED) 's,%U,$(VERSION_REPO),g' \
-e 's,%d,\L$(subst $(space),_,$(VERSION_DIST)),g' \
-e 's,%R,$(REVISION),g' \
-e 's,%T,$(BOARD),g' \
-e 's,%S,$(BOARD)$(if $(SUBTARGET),/$(SUBTARGET)),g' \
-e 's,%S,$(BOARD)/$(if $(SUBTARGET),$(SUBTARGET),generic),g' \