mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
8 lines
240 B
Text
8 lines
240 B
Text
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
for x in *.h ; do
|
||
|
|
sed -i -e 's/^#ifndef *__[a-z_][a-z_]*_h__/#pragma once/' -e '/^#define *__[a-z_][a-z_]*_h__/d' -e '/^#endif *\/\* __[a-z_][a-z_]*_h__.*$/d' -e '/^#endif *\/\/ *__[a-z_][a-z_]*_h__.*$/d' $x
|
||
|
|
done
|
||
|
|
|
||
|
|
exit 0
|