1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-27 21:54:17 +01:00

Merge pull request #249 from olof/portable_install_usage

build: Avoid using non-portable `install -D`
This commit is contained in:
Olof Johansson 2015-07-26 23:41:46 +02:00
commit ce6ca44123
2 changed files with 4 additions and 1 deletions

View File

@ -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 {} \;

Binary file not shown.