diff --git a/lib/Makefile b/lib/Makefile index c9c43f4..c20a33d 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -27,7 +27,10 @@ svtplay-dl: $(PYFILES) mkdir -p .build @# Stage the files in .build for postprocessing - for py in $(PYFILES); do install -D $$py .build/$$py; done + for py in $(PYFILES); do \ + install -d ".build/$${py%/*}"; \ + install $$py .build/$$py; \ + done @# reset timestamps, to avoid non-determinism in zip file find .build/ -exec touch -m -t 198001010000 {} \; diff --git a/svtplay-dl b/svtplay-dl index 753b1b5..3bbf7e0 100755 Binary files a/svtplay-dl and b/svtplay-dl differ