|
find common soundbase soundlib sounddsp sounddev unarchiver mptrack pluginBridge -type f \( -name "*.cpp" -or -name "*.h" -or -name "*.c" \) | xargs -n 1 --no-run-if-empty -I{} bash -c 'sed -i "/^\t* *\/\/--*$/d" {} ; sed -i "/^\t* *\/\/==*$/d" {} '
find README.md | xargs -n 1 --no-run-if-empty -I{} bash -c 'sed -i "/^\t* *\/\/--*$/d" {} ; sed -i "/^\t* *\/\/==*$/d" {} ' |
|
|
We should do that transformation right before making a branch. That way, merges between trunk and the branch will have no conflicts caused by this change.
Applying right after a branch, i.e. when starting a new development version would severely hinder back-porting changes to the previous release branch. |
|
|
find common soundbase soundlib sounddsp sounddev unarchiver mptrack pluginBridge test -type f \( -name "*.cpp" -or -name "*.h" -or -name "*.c" \) | xargs -n 1 --no-run-if-empty -I{} bash -c 'sed -i "/^\t* *\/\/--*$/d" {} ; sed -i "/^\t* *\/\/==*$/d" {} '
find README.md | xargs -n 1 --no-run-if-empty -I{} bash -c 'sed -i "/^\t* *\/\/--*$/d" {} ; sed -i "/^\t* *\/\/==*$/d" {} ' |
|
|
r8950 |
|