tech-pkg archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
bsd.prog.mk under Interix-3.5
I'm trying to use pkgsrc's bmake under Interix for my own projects
that use bsd.prog.mk & co.
The problem is that 'bmake install' fails like this.
bmake: exec(/bin/install-sh) failed (No such file or directory)
The following patch solves the problem.
Index: files/mods/Interix.sys.mk
===================================================================
RCS file:
/cvsroot/pkgsrc/pkgtools/bootstrap-mk-files/files/mods/Interix.sys.mk,v
retrieving revision 1.2
diff -u -r1.2 Interix.sys.mk
--- files/mods/Interix.sys.mk 11 Nov 2006 18:24:52 -0000 1.2
+++ files/mods/Interix.sys.mk 28 Sep 2008 11:48:07 -0000
@@ -51,7 +51,7 @@
COMPILE.r?= ${FC} ${FFLAGS} ${RFLAGS} -c
LINK.r?= ${FC} ${FFLAGS} ${RFLAGS} ${LDFLAGS}
-INSTALL?= ${LOCALBASE}/bin/install-sh
+INSTALL?= /bin/install
LEX?= lex
LFLAGS?=
--
Best regards, Aleksey Cheusov.
Home |
Main Index |
Thread Index |
Old Index