Files
ThirdParty-common/etc/patches/mkdiff-paraview-5.0.1
mark d75ec96234 ENH: add a patch mechanism for ParaView build
- this adds some flexiblity/robustness to the build
2016-06-14 18:28:56 +02:00

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