1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-08-01 17:38:41 +00:00

license stuff

--HG--
rename : src/licensecomment.txt => licensecomment.txt
This commit is contained in:
Perttu Ahola 2010-11-29 20:13:04 +02:00
parent 0604f3f2ee
commit fc26dcdb19
45 changed files with 808 additions and 6 deletions

9
addlicensecomments.sh Normal file
View file

@ -0,0 +1,9 @@
#!/bin/sh
for i in `grep -L 'This program is free software' src/*.{h,cpp}`
do
cat licensecomment.txt > tempfile
cat $i >> tempfile
cp tempfile $i
done
rm tempfile