Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions posix.mak
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,16 @@ DFLAGS += -w -de
DUBFLAGS = --arch=$(subst 32,x86,$(subst 64,x86_64,$(MODEL)))

TOOLS = \
$(ROOT)/rdmd \
$(ROOT)/ddemangle \
$(ROOT)/catdoc \
$(ROOT)/checkwhitespace \
$(ROOT)/ddemangle \
$(ROOT)/detab \
$(ROOT)/rdmd \
$(ROOT)/tolf

CURL_TOOLS = \
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

AFAICT is curl bundled with Phobos since a long time, I assume it's due to the CURL linker hack that was used here before.
For reference, the hack has been removed in #239, so we could remove the category CURL_TOOLS?

$(ROOT)/dget \
$(ROOT)/changed
$(ROOT)/changed \
$(ROOT)/dget

DOC_TOOLS = \
$(ROOT)/dman
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This isn't checked atm (it requires dlang.org to be checked out - will do so in another PR)

Expand Down