I tried to build a couple of AUR packages, Python modules, etc and failed due to a weird issue with mv. For example, in a fresh installation of JuNest I attempted to run yogurt -S linux_logo_archcustom. There is a line in the Makefile in the po directory which renames a file: mv linux_logo.po linux_logo.pot. This fails with an error mv: can not stat 'linux_logo.po': No such file or directory. Same happened when pip install python-igraph compiled the C library of igraph. However calling mv from bash works fine. In fact if I call mv from any script it fails with the same error.
I tried to build a couple of AUR packages, Python modules, etc and failed due to a weird issue with
mv
. For example, in a fresh installation of JuNest I attempted to runyogurt -S linux_logo_archcustom
. There is a line in theMakefile
in thepo
directory which renames a file:mv linux_logo.po linux_logo.pot
. This fails with an errormv: can not stat 'linux_logo.po': No such file or directory
. Same happened whenpip install python-igraph
compiled the C library of igraph. However callingmv
frombash
works fine. In fact if I callmv
from any script it fails with the same error.