diff --git a/scripts/mkflags.pl b/scripts/mkflags.pl deleted file mode 100755 index b4687a651..000000000 --- a/scripts/mkflags.pl +++ /dev/null @@ -1,21 +0,0 @@ -#! /usr/bin/perl -# -# Copyright 2005-2016 The Mumble Developers. All rights reserved. -# Use of this source code is governed by a BSD-style license -# that can be found in the LICENSE file at the root of the -# Mumble source tree or at . - -use warnings; -use strict; - -open(F, ">../src/mumble/mumble_flags.qrc"); -print F qq|\n|; - -opendir(D, "../icons/flags"); -my @entries = grep /\.png/, readdir(D); -foreach my $e (@entries) { - print F qq|../../icons/flags/$e\n|; -} -print F qq|\n|; -close(F); -