view src/of-quaternion-1-cross-fixes.patch @ 6215:d18a5545df0d release

build-gettext: Don't build emacs bindings. * src/build-gettext.mk: The `emacs` installed on the build system might be incompatible with the STL built by build-gcc. We probably don't need the emacs bindings for the `gettext` build tool anyway. So skip building those bindings.
author Markus Mützel <markus.muetzel@gmx.de>
date Sat, 07 May 2022 12:01:10 +0200
parents 2d8b0a2025e4
children
line wrap: on
line source

diff -ur quaternion.orig/src/Makefile quaternion/src/Makefile
--- quaternion.orig/src/Makefile	2015-05-10 07:14:09.000000000 -0400
+++ quaternion/src/Makefile	2015-05-10 07:15:03.000000000 -0400
@@ -1,11 +1,13 @@
+MKOCTFILE ?= mkoctfile
+
 all: is_real_array.oct
 
 # helper
 is_real_array.oct: is_real_array.cc
-	mkoctfile is_real_array.cc
+	$(MKOCTFILE) is_real_array.cc
 
 clean:
 	rm -rf *.o core octave-core *.oct *~
 
 realclean: clean
-	rm -rf *.a
\ No newline at end of file
+	rm -rf *.a