Skip to content

Commit f30e449

Browse files
committed
add: alternate name support for tool executables
1 parent 7b598ee commit f30e449

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tools/Rules.release

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ release-bin:
2424
@if test $(TOOLS_BIN) ; then \
2525
$(PRINTF) 'Installing %s to %s\n' $(TOOLS_BIN) $(PS2SDK) ; \
2626
cp -f $(TOOLS_BIN) $(RELEASE_TOOLS_DIRS) ; \
27+
for file in $(TOOLS_BIN_ALTNAMES); do \
28+
ln -sf $$(basename $(TOOLS_BIN)) $(RELEASE_TOOLS_DIRS)/$$file; \
29+
done; \
2730
fi;
2831

2932
release: release-dirs release-bin

0 commit comments

Comments
 (0)