bfbe0c1c5b
GNU Octave is a high-level language, primarily intended for numerical computations. It provides a convenient command line interface for solving linear and nonlinear problems numerically, and for performing other numerical experiments using a language that is mostly compatible with Matlab. It may also be used as a batch-oriented language.
18 lines
655 B
Plaintext
18 lines
655 B
Plaintext
$OpenBSD: patch-kpathsea_Makefile_in,v 1.1.1.1 2001/07/15 18:07:16 naddy Exp $
|
|
--- kpathsea/Makefile.in.orig Fri Jul 13 00:45:59 2001
|
|
+++ kpathsea/Makefile.in Fri Jul 13 00:47:13 2001
|
|
@@ -143,10 +143,10 @@ compile = $(CC) $(ALL_CFLAGS)
|
|
$(compile) $<
|
|
|
|
# Installation.
|
|
-INSTALL = @INSTALL@
|
|
-INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
|
+INSTALL = install -c
|
|
+INSTALL_PROGRAM = install -c -m 555
|
|
INSTALL_SCRIPT = $(INSTALL_PROGRAM)
|
|
-INSTALL_DATA = @INSTALL_DATA@
|
|
+INSTALL_DATA = install -c -m 444
|
|
INSTALL_LIBTOOL_LIBS = INSTALL_DATA='$(INSTALL_DATA)' $(LIBTOOL) install-lib
|
|
INSTALL_LIBTOOL_PROG = INSTALL_PROGRAM='$(INSTALL_PROGRAM)' $(LIBTOOL) install-prog
|
|
|