diff options
author | deva <deva> | 2005-05-03 08:31:58 +0000 |
---|---|---|
committer | deva <deva> | 2005-05-03 08:31:58 +0000 |
commit | 16aeeeb8110893e14c2d134542981cdc0f257411 (patch) | |
tree | fbcd9ec22c27d9f82a049055ec9d37035a1e3c03 /tools | |
parent | a8456a6a949178ff06ca66cc10c0079da9f9f067 (diff) |
Removed the error object, and replaced it with a more generic info object.
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/MIaVAdd | 26 |
1 files changed, 15 insertions, 11 deletions
diff --git a/tools/MIaVAdd b/tools/MIaVAdd index 9125858..7f36037 100755 --- a/tools/MIaVAdd +++ b/tools/MIaVAdd @@ -11,24 +11,28 @@ function allfile() { echo " ****************************************************************************/" >> $1; echo "" >> $1; echo "/*" >> $1; - echo " * This program is free software; you can redistribute it and/or modify" >> $1; - echo " * it under the terms of the GNU General Public License as published by" >> $1; - echo " * the Free Software Foundation; either version 2 of the License, or" >> $1; - echo " * (at your option) any later version." >> $1; + echo " * This file is part of MIaV." >> $1; echo " *" >> $1; - echo " * This program is distributed in the hope that it will be useful," >> $1; - echo " * but WITHOUT ANY WARRANTY; without even the implied warranty of" >> $1; - echo " * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the" >> $1; - echo " * GNU Library General Public License for more details." >> $1; + echo " * MIaV is free software; you can redistribute it and/or modify" >> $1; + echo " * it under the terms of the GNU General Public License as published by" >> $1; + echo " * the Free Software Foundation; either version 2 of the License, or" >> $1; + echo " * (at your option) any later version." >> $1; echo " *" >> $1; - echo " * You should have received a copy of the GNU General Public License" >> $1; - echo " * along with this program; if not, write to the Free Software" >> $1; - echo " * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA." >> $1; + echo " * MIaV is distributed in the hope that it will be useful," >> $1; + echo " * but WITHOUT ANY WARRANTY; without even the implied warranty of" >> $1; + echo " * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the" >> $1; + echo " * GNU General Public License for more details." >> $1; + echo " *" >> $1; + echo " * You should have received a copy of the GNU General Public License" >> $1; + echo " * along with MIaV; if not, write to the Free Software" >> $1; + echo " * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA." >> $1; echo " */" >> $1; + echo "" >> $1; echo "/*" >> $1; echo -n " * \$" >> $1; echo "Id$" >> $1; echo " */" >> $1; + echo "" >> $1; echo "/*" >> $1; echo -n " * \$" >> $1; echo "Log$" >> $1; |