|
1 | 1 | /*
|
2 |
| - * This file is part of the Continued-MaNGOS Project |
| 2 | + * This file is part of the CMaNGOS Project. See AUTHORS file for Copyright information |
3 | 3 | *
|
4 | 4 | * This program is free software; you can redistribute it and/or modify
|
5 | 5 | * it under the terms of the GNU General Public License as published by
|
@@ -672,38 +672,38 @@ bool generate_sql_makefile()
|
672 | 672 | if (!fout) { pclose(cmd_pipe); return false; }
|
673 | 673 |
|
674 | 674 | fprintf(fout,
|
675 |
| - "# This file is part of the Continued-MaNGOS Project\n" |
676 |
| - "#\n" |
677 |
| - "# This program is free software; you can redistribute it and/or modify\n" |
678 |
| - "# it under the terms of the GNU General Public License as published by\n" |
679 |
| - "# the Free Software Foundation; either version 2 of the License, or\n" |
680 |
| - "# (at your option) any later version.\n" |
681 |
| - "#\n" |
682 |
| - "# This program is distributed in the hope that it will be useful,\n" |
683 |
| - "# but WITHOUT ANY WARRANTY; without even the implied warranty of\n" |
684 |
| - "# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" |
685 |
| - "# GNU General Public License for more details.\n" |
686 |
| - "#\n" |
687 |
| - "# You should have received a copy of the GNU General Public License\n" |
688 |
| - "# along with this program; if not, write to the Free Software\n" |
689 |
| - "# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n" |
690 |
| - "\n" |
691 |
| - "## Process this file with automake to produce Makefile.in\n" |
692 |
| - "\n" |
693 |
| - "## Sub-directories to parse\n" |
694 |
| - "SUBDIRS = before_upgrade_to_0.13\n" |
695 |
| - "\n" |
696 |
| - "## Change installation location\n" |
697 |
| - "# datadir = mangos/%s\n" |
698 |
| - "pkgdatadir = $(datadir)/mangos/%s\n" |
699 |
| - "\n" |
700 |
| - "## Files to be installed\n" |
701 |
| - "# Install basic SQL files to datadir\n" |
702 |
| - "pkgdata_DATA = \\\n", |
703 |
| - sql_update_dir, sql_update_dir |
704 |
| - ); |
705 |
| - |
706 |
| - for (std::set<std::string>::iterator itr = file_list.begin(), next; itr != file_list.end(); ++itr) |
| 675 | + "# This file is part of the CMaNGOS Project. See AUTHORS file for Copyright information\n" |
| 676 | + "#\n" |
| 677 | + "# This program is free software; you can redistribute it and/or modify\n" |
| 678 | + "# it under the terms of the GNU General Public License as published by\n" |
| 679 | + "# the Free Software Foundation; either version 2 of the License, or\n" |
| 680 | + "# (at your option) any later version.\n" |
| 681 | + "#\n" |
| 682 | + "# This program is distributed in the hope that it will be useful,\n" |
| 683 | + "# but WITHOUT ANY WARRANTY; without even the implied warranty of\n" |
| 684 | + "# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" |
| 685 | + "# GNU General Public License for more details.\n" |
| 686 | + "#\n" |
| 687 | + "# You should have received a copy of the GNU General Public License\n" |
| 688 | + "# along with this program; if not, write to the Free Software\n" |
| 689 | + "# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n" |
| 690 | + "\n" |
| 691 | + "## Process this file with automake to produce Makefile.in\n" |
| 692 | + "\n" |
| 693 | + "## Sub-directories to parse\n" |
| 694 | + "SUBDIRS = before_upgrade_to_0.13\n" |
| 695 | + "\n" |
| 696 | + "## Change installation location\n" |
| 697 | + "# datadir = mangos/%s\n" |
| 698 | + "pkgdatadir = $(datadir)/mangos/%s\n" |
| 699 | + "\n" |
| 700 | + "## Files to be installed\n" |
| 701 | + "# Install basic SQL files to datadir\n" |
| 702 | + "pkgdata_DATA = \\\n", |
| 703 | + sql_update_dir, sql_update_dir |
| 704 | + ); |
| 705 | + |
| 706 | + for(std::set<std::string>::iterator itr = file_list.begin(), next; itr != file_list.end(); ++itr) |
707 | 707 | {
|
708 | 708 | next = itr; ++next;
|
709 | 709 | fprintf(fout, "\t%s%s\n", itr->c_str(), next == file_list.end() ? "" : " \\");
|
|
0 commit comments