Files
CSXCAD/CSXCAD-octave-AppCSXCAD-load.patch
Stefan Brüns 1d6918b588 Accepting request 1135913 from home:StefanBruens:branches:science
- Update to version 0.6.3
  * Various bug fixes and enhancements, no changelog available.
- Drop obsolete/upstream patches:
  * CSXCAD-vtk.patch
  * CSXCAD-readme-octave-package.patch
  * 0001-Fix-build-with-VTK-9.0-fix-memory-leak.patch
  * CSXCAD-hdf5.patch
  * CSXCAD-no-build-date.patch

OBS-URL: https://build.opensuse.org/request/show/1135913
OBS-URL: https://build.opensuse.org/package/show/science/CSXCAD?expand=0&rev=22
2024-01-02 00:26:43 +00:00

16 lines
658 B
Diff

Index: CSXCAD-0.6.0/matlab/CSXGeomPlot.m
===================================================================
--- CSXCAD-0.6.0.orig/matlab/CSXGeomPlot.m
+++ CSXCAD-0.6.0/matlab/CSXGeomPlot.m
@@ -28,9 +28,7 @@ filename = mfilename('fullpath');
pathname = fileparts( filename );
if isunix
- AppCSXCAD_bin = searchBinary('AppCSXCAD.sh', ...
- {[pathname filesep '..' filesep '..' filesep 'AppCSXCAD' filesep], ...
- [pathname filesep '..' filesep '..' filesep '..' filesep 'bin' filesep]});
+ AppCSXCAD_bin = 'AppCSXCAD.sh';
else % assume windows
AppCSXCAD_bin = searchBinary('AppCSXCAD.exe',[pathname filesep '..' filesep]);
end