From 2c3eb27f398dd6182b2a8d9ae96fb850b5857e6b Mon Sep 17 00:00:00 2001 From: Mikkel Krautz Date: Sun, 27 Nov 2016 12:34:36 +0100 Subject: [PATCH] scripts/mkflags.pl: remove old flags script. It doesn't work with the new SVG flags, so drop it. --- scripts/mkflags.pl | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100755 scripts/mkflags.pl 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); -