Closed sl1pkn07 closed 5 years ago
VapourSynth-dpid/Source/Makefile
Lines 28 to 29 in 7771a30
@cp $(TARGET) $(PREFIX) @chmod 644 $(PREFIX)/$(TARGET) seems need a intermediary step for create the target
cp: cannot create regular file '/tmp/makepkg/vapoursynth-plugin-dpid-git/pkg/vapoursynth-plugin-dpid-git/usr/lib/vapoursynth': No such file or directory
instead copy and chmod, better use
install -Dm644
this command do the samediff --git a/Source/Makefile b/Source/Makefile index b670ac2..b18c520 100644 --- a/Source/Makefile +++ b/Source/Makefile @@ -25,8 +25,7 @@ kernel16.o: kernel16.cu install: $(TARGET) @echo "Installing..." - @cp $(TARGET) $(PREFIX) - @chmod 644 $(PREFIX)/$(TARGET) + @install -Dm644 $(TARGET) $(PREFIX)/$(TARGET) uninstall: @echo "Uninstalling..."
greetings
Sorry, I forgot that step.
Thanks you guys.
https://github.com/WolframRhodium/VapourSynth-dpid/blob/7771a30a9c9dea222261311718d3b82be4f05a83/Source/Makefile#L28-L29
seems need a intermediary step for create the target
instead copy and chmod, better use
install -Dm644
this command do the samegreetings