Description: Call the octave binaries by their name without version
Forwarded: not-needed
Author: Thomas Weber <tweber@debian.org>
--- a/scripts/pkg/private/configure_make.m
+++ b/scripts/pkg/private/configure_make.m
@@ -29,9 +29,9 @@
     octave_bindir = octave_config_info ("bindir");
     ver = version ();
     ext = octave_config_info ("EXEEXT");
-    mkoctfile_program = fullfile (octave_bindir, sprintf ("mkoctfile-%s%s", ver, ext));
-    octave_config_program = fullfile (octave_bindir, sprintf ("octave-config-%s%s", ver, ext));
-    octave_binary = fullfile (octave_bindir, sprintf ("octave-%s%s", ver, ext));
+    mkoctfile_program = fullfile (octave_bindir, "mkoctfile");
+    octave_config_program = fullfile (octave_bindir, "octave-config");
+    octave_binary = fullfile (octave_bindir, "octave");
     cenv = {"MKOCTFILE"; mkoctfile_program;
             "OCTAVE_CONFIG"; octave_config_program;
             "OCTAVE"; octave_binary;
