Skip to content

Commit

Permalink
fixup! Debug windows
Browse files Browse the repository at this point in the history
  • Loading branch information
jacob-carlborg committed Jun 24, 2023
1 parent b91ac8a commit 8d03dfa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
set -e

if test -z "$DC"; then
if test -x "$(which dmd)"; then
if command -v dmd > /dev/null; then
DC=dmd
elif test -x "$(which ldc2)"; then
elif command -v ldc2 > /dev/null; then
DC=ldc2
else
echo "Neither DMD nor LDC found to compile configure.d"
Expand Down

0 comments on commit 8d03dfa

Please sign in to comment.