ckolivas / lrzip

Long Range Zip
http://lrzip.kolivas.org
GNU General Public License v2.0
618 stars 76 forks source link

lzma/C/Makefile.am: fix install with asm #154

Closed ffontaine closed 4 years ago

ffontaine commented 4 years ago

Commit 3734448abc18cc8b92bef415dfac7adbacfdc148 fixed the build failure due to .libs being missing but it raises a build failure when .libs is already there:

nasm -I../ASM/x86/ -Dx64 -f elf64 -o 7zCrcOpt_asm.o ../../lzma/ASM/x86/7zCrcOpt_asm.asm
mkdir .libs
mkdir: cannot create directory '.libs': File exists

Fix this error by adding -p argument to mkdir

Fixes:

Signed-off-by: Fabrice Fontaine fontaine.fabrice@gmail.com