Skip to content

Commit 9727902

Browse files
NiKiZemcb30
authored andcommitted
[boot] Include size and modification dates of files in HTML output
Signed-off-by: Christian I. Nilsson <nikize@gmail.com> Modified-by: Michael Brown <mbrown@fensystems.co.uk> Signed-off-by: Michael Brown <mbrown@fensystems.co.uk>
1 parent 0acc12d commit 9727902

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -114,18 +114,18 @@ output/errors : $(patsubst %,$(SRCDIR)/%,$(ERROR_FILES))
114114
sort -u $^ -o $@
115115

116116
$(OUTPUTS_STATIC) : output/% : static/%
117-
ln -sf $(realpath $<) $@
117+
cp -p $< $@
118118

119119
$(OUTPUTS_BIN) : output/% : $(SRCDIR)/bin/%
120-
ln -sf $(realpath $<) $@
120+
cp -p $< $@
121121

122122
$(OUTPUTS_BIN_COMBI) : output/% : $(SRCDIR)/bin-combi/%
123-
ln -sf $(realpath $<) $@
123+
cp -p $< $@
124124

125125
$(OUTPUTS_BIN_OTHER) : output/% : $(SRCDIR)/bin-%
126-
ln -sf $(realpath $<) $@
126+
cp -p $< $@
127127

128128
$(INDEX_DYNAMIC) : output/% : $(ALL_OUTPUTS)
129129
( cd $(dir $@) ; \
130-
tree -H "." -C -T "iPXE files" --filesfirst \
130+
tree -H "." -C -T "iPXE files" -s -D --filesfirst \
131131
-I index.html -o index.html )

0 commit comments

Comments
 (0)