~ruther/guix-local

ref: 43dc47fa249aebe3b5cbc0141c2be4ba226e92bf guix-local/gnu/packages/patches/blast+-fix-makefile.patch -rw-r--r-- 626 bytes
43dc47fa — Marius Bakke gnu: Add zathura-pdf-mupdf. 8 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Without this patch, the 'make install' attempts to 'install' a directory, which causes an error.

diff --git a/c++/src/build-system/Makefile.in.top b/c++/src/build-system/Makefile.in.top
index 1abe44f..d6000b3 100644
--- a/c++/src/build-system/Makefile.in.top
+++ b/c++/src/build-system/Makefile.in.top
@@ -51,7 +51,7 @@ install-toolkit:
 	    done
 	cd $(includedir0) && find * -name CVS -prune -o -print |\
             cpio -pd $(pincludedir)
-	$(INSTALL) -m 644 $(incdir)/* $(pincludedir)
+	cp -R $(incdir)/* $(pincludedir)
 ## set up appropriate build and status directories somewhere under $(libdir)?
 
 install-gbench: