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:
commit
ce6ca44123
@ -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 {} \;
|
||||
|
BIN
svtplay-dl
BIN
svtplay-dl
Binary file not shown.
Loading…
Reference in New Issue
Block a user