From: Muh Muhten Date: Thu, 26 May 2022 05:08:09 +0000 (-0400) Subject: Copy python-proposed instead of hardlink to python X-Git-Url: https://arthur.ath.cx/gitweb/?a=commitdiff_plain;h=a995eea8bd57041cb373f7041da373897a2ed597;p=bup.git Copy python-proposed instead of hardlink to python In the unlikely event that we're building on a filesystem that doesn't support hard links, ln fails gratuitously, while copying probably still works. The python wrapper is normally pretty small. Signed-off-by: Muh Muhten --- diff --git a/GNUmakefile b/GNUmakefile index 20754e5..5ec49bf 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -172,7 +172,7 @@ dev/python-proposed: dev/python.c src/bup/compat.c src/bup/io.c clean_paths += dev/python dev/python: dev/python-proposed dev/validate-python $@-proposed - ln $@-proposed $@ + cp -a $@-proposed $@ clean_paths += dev/bup-exec generated_dependencies += dev/bup-exec.d