changeset 3740:0228f57f88c3

[project @ 2000-11-28 02:51:22 by jwe]
author jwe
date Tue, 28 Nov 2000 02:51:23 +0000
parents 85027c5aedc2
children b65077dfa1b1
files ChangeLog configure.in scripts/ChangeLog scripts/Makefile.in
diffstat 4 files changed, 12 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Tue Nov 21 01:55:32 2000 +0000
+++ b/ChangeLog	Tue Nov 28 02:51:23 2000 +0000
@@ -1,3 +1,8 @@
+2000-11-27  Marcus.Brinkmann  <Marcus.Brinkmann@ruhr-uni-bochum.de>
+
+	* configure.in: Handle *-*-gnu* the same as *-*-linux* for shared
+	library creation.
+
 2000-11-03  Andy Adler  <en254@freenet.carleton.ca>
 
 	* mkoctfile.in: Handle -c to mean compile only.
--- a/configure.in	Tue Nov 21 01:55:32 2000 +0000
+++ b/configure.in	Tue Nov 28 02:51:23 2000 +0000
@@ -21,7 +21,7 @@
 ### Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 ### 02111-1307, USA. 
 
-AC_REVISION($Revision: 1.336 $)
+AC_REVISION($Revision: 1.337 $)
 AC_PREREQ(2.9)
 AC_INIT(src/octave.cc)
 AC_CONFIG_HEADER(config.h)
@@ -704,7 +704,7 @@
     SONAME_FLAGS='-Xlinker -soname -Xlinker $@'
     RLD_FLAG='-Xlinker -rpath -Xlinker $(octlibdir)'
   ;;
-  *-*-linux*)
+  *-*-linux* | *-*-gnu*)
     SONAME_FLAGS='-Xlinker -soname -Xlinker $@'
     RLD_FLAG='-Xlinker -rpath -Xlinker $(octlibdir)'
   ;;
--- a/scripts/ChangeLog	Tue Nov 21 01:55:32 2000 +0000
+++ b/scripts/ChangeLog	Tue Nov 28 02:51:23 2000 +0000
@@ -1,3 +1,7 @@
+2000-11-21  John W. Eaton  <jwe@bevo.che.wisc.edu>
+
+	* Makefile.in (bin-dist): Pass -C to $(MAKE), not -c.
+
 2000-11-16  Paul Kienzle <pkienzle@kienzle.powernet.co.uk>
 
 	* plot/contour.m: Reorder args for Matlab compatibility.
--- a/scripts/Makefile.in	Tue Nov 21 01:55:32 2000 +0000
+++ b/scripts/Makefile.in	Tue Nov 28 02:51:23 2000 +0000
@@ -87,5 +87,5 @@
 .PHONY: dist
 
 bin-dist:
-	for dir in $(BINDISTSUBDIRS); do mkdir ../`cat ../.fname`/scripts/$$dir; $(MAKE) -c $$dir $@; done
+	for dir in $(BINDISTSUBDIRS); do mkdir ../`cat ../.fname`/scripts/$$dir; $(MAKE) -C $$dir $@; done
 .PHONY: bin-dist