mirror of
https://develop.openfoam.com/Development/ThirdParty-common.git
synced 2025-12-08 06:57:50 +00:00
14 lines
269 B
Bash
14 lines
269 B
Bash
#!/bin/sh
|
|
|
|
# simple script to generate patches
|
|
paraview=ParaView-5.0.1
|
|
|
|
for i in \
|
|
$paraview/VTK/CMake/vtkCompilerExtras.cmake \
|
|
$paraview/VTK/CMake/GenerateExportHeader.cmake \
|
|
$paraview/Qt/Components/CMakeLists.txt \
|
|
;
|
|
do
|
|
diff -uw $i.orig $i
|
|
done
|