What does “execution of mv failed, exit code 1” mean when I try to build a package?
If you have StuffIt Pro installed, it could be that you have “Archive Via Real Name” mode enabled. Check for a StuffIt preference pane in the System Preferences tool, and disable “ArchiveViaRealName” if it’s enabled. It contains a buggy reimplementation of a few important system calls that will cause a number of strange and transient errors such as this. Otherwise, an mv error typically means that another error happened earlier in the build, but the build process didn’t stop. To track down the offending file(s), search in the output of the build for the nonexistent file, e.g. if you have something like:mv /sw/src/root-foo-0.1.2-3/sw/lib/libbar*.dylib \ /sw/src/root-foo-shlibs-0.1.2-3/sw/lib/ mv: cannot stat `/sw/src/root-foo-0.1.2-3/sw/lib/libbar*.dylib’: No such file or directory ### execution of mv failed, exit code 1 Failed: installing foo-0.1.2-3 failed then you should look for libbar somewhere further back in the output of your build attempt.
Related Questions
- Does a high protein percentage (as shown on the package) mean that a pet food is automatically better than others with lower percentages?
- The MiniTimer packages have a set amount of accessories already included. Does that mean I cant add any more products to the package?
- What does "execution of mv failed, exit code 1" mean when I try to build a package?