Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKissaki <kissaki@gmx.de>2013-01-13 04:14:44 +0400
committerKissaki <kissaki@gmx.de>2013-06-04 23:59:52 +0400
commit1e4bb6dbd00936f5314682174b33cab98f8b921b (patch)
treea9c4e1e0cafa48d70dc9632b7943e3ad03ba9029 /scripts/mklic.pl
parent7642e722ff8c10b6c5e7641d7d54d576fd96b50c (diff)
Prepend Projectname to header guard defines
* some few (4?) files actually already had it
Diffstat (limited to 'scripts/mklic.pl')
-rwxr-xr-xscripts/mklic.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/mklic.pl b/scripts/mklic.pl
index ae7170c04..9090de863 100755
--- a/scripts/mklic.pl
+++ b/scripts/mklic.pl
@@ -41,8 +41,8 @@ print $F "/*\n";
print $F " * This file was auto-generated by scripts/mklic.pl\n";
print $F " * DO NOT EDIT IT MANUALLY\n";
print $F " */\n";
-print $F "#ifndef LICENSES_H_\n";
-print $F "#define LICENSES_H_\n";
+print $F "#ifndef MUMBLE_LICENSES_H_\n";
+print $F "#define MUMBLE_LICENSES_H_\n";
print $F "\n";
print $F "#include <QtGlobal>\n\n";