You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sci-biology/infernal/files/infernal-1.0.2-respect-DEST...

17 lines
396 B

Build system does not respect DESTDIR by default.
--- a/Makefile.in
+++ b/Makefile.in
@@ -203,9 +203,9 @@
# "make install" installs the programs in BINDIR
#
install:
- mkdir -p ${BINDIR}
+ mkdir -p $(DESTDIR)${BINDIR}
for file in $(PROGS); do\
- cp src/$$file $(BINDIR)/;\
+ cp src/$$file $(DESTDIR)$(BINDIR)/;\
done
# if test -d $(RIGFILTERS); then\
# for file in $(RFPROGS); do\