Skip to content

Commit 6ddca3a

Browse files
committed
target.mk: remove the unused Target-Path field
Signed-off-by: Felix Fietkau <[email protected]>
1 parent 60fc661 commit 6ddca3a

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

include/target.mk

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,6 @@ define BuildTargets/DumpCurrent
279279
@echo 'Target: $(TARGETID)'; \
280280
echo 'Target-Board: $(BOARD)'; \
281281
echo 'Target-Name: $(BOARDNAME)$(if $(SUBTARGETS),$(if $(SUBTARGET),))'; \
282-
echo 'Target-Path: $(subst $(TOPDIR)/,,$(PWD))'; \
283282
echo 'Target-Arch: $(ARCH)'; \
284283
echo 'Target-Arch-Packages: $(if $(ARCH_PACKAGES),$(ARCH_PACKAGES),$(ARCH)$(if $(CPU_TYPE),_$(CPU_TYPE))$(if $(CPU_SUBTYPE),_$(CPU_SUBTYPE)))'; \
285284
echo 'Target-Features: $(FEATURES)'; \

scripts/metadata.pm

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ sub parse_target_metadata($) {
6868
}
6969
};
7070
/^Target-Name:\s*(.+)\s*$/ and $target->{name} = $1;
71-
/^Target-Path:\s*(.+)\s*$/ and $target->{path} = $1;
7271
/^Target-Arch:\s*(.+)\s*$/ and $target->{arch} = $1;
7372
/^Target-Arch-Packages:\s*(.+)\s*$/ and $target->{arch_packages} = $1;
7473
/^Target-Features:\s*(.+)\s*$/ and $target->{features} = [ split(/\s+/, $1) ];

0 commit comments

Comments
 (0)