Skip to content

Commit

Permalink
Fix to include exe files for windows compile.
Browse files Browse the repository at this point in the history
  • Loading branch information
wcawijngaards committed Jan 30, 2024
1 parent 073c30f commit 1ea912e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions makewin.sh
Original file line number Diff line number Diff line change
Expand Up @@ -248,10 +248,12 @@ cp ../ldns/README .
cp ../ldns/Changelog .
info "copy static exe"
for x in "$installplace"/bin/* ; do
cp "$x" "$(basename "$x").exe"
cp "$x" .
done
# but the shell script stays a script file
mv ldns-config.exe ldns-config
if test -f ldns-config.exe; then
mv ldns-config.exe ldns-config
fi
info "copy include"
mkdir include
mkdir include/ldns
Expand Down

0 comments on commit 1ea912e

Please sign in to comment.