diff --git a/BuildLua.sh b/BuildLua.sh index effadcf..1968eb8 100755 --- a/BuildLua.sh +++ b/BuildLua.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash if [ -z $2 ]; then echo "Usage: $0 input_file output_file [input2 output2 ...]" diff --git a/Makefile b/Makefile old mode 100644 new mode 100755 index 78fc4c3..d659bf7 --- a/Makefile +++ b/Makefile @@ -64,7 +64,7 @@ $(DownloadManager): LDFLAGS += -pthread endif $(DownloadManager): $(DM_OBJECTS) @printf "\e[1;32m LINK\e[m $@\n" - @$(CXX) $(LDFLAGS) -o $@ $^ + @$(CXX) $(LDFLAGS) -o $@ $^ -lcurl $(PreciseTimer): $(PT_OBJECTS) @printf "\e[1;32m LINK\e[m $@\n"