view src/of-quaternion-1-cross-fixes.patch @ 6161:8fcac4d6d983 release

of-queueing: Fix syntax error with Octave 7 (bug #62314). * src/of-queueing-1-octave7.patch: Add new file. * dist-files.mk: Include new patch.
author Markus Mützel <markus.muetzel@gmx.de>
date Thu, 14 Apr 2022 19:27:13 +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