X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=make%2Fcommon.pm;h=519e7fba80ed8f2e0d5164c8feda76b025dee646;hb=05fe4bdd1dbe3162abb6efe830bc21bb94c73fa8;hp=636c3d5d6f44b1eed3998db09954bae467dd58c0;hpb=87471ab92dc4c0089d021db3faa27ed2f929fb6b;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/make/common.pm b/make/common.pm index 636c3d5d6..519e7fba8 100644 --- a/make/common.pm +++ b/make/common.pm @@ -1,7 +1,7 @@ # # InspIRCd -- Internet Relay Chat Daemon # -# Copyright (C) 2014-2017, 2019 Sadie Powell +# Copyright (C) 2014-2017, 2019-2020 Sadie Powell # # This file is part of InspIRCd. InspIRCd is free software: you can # redistribute it and/or modify it under the terms of the GNU General Public @@ -17,13 +17,9 @@ # -BEGIN { - require 5.10.0; -} - package make::common; -use feature ':5.10'; +use v5.10.0; use strict; use warnings FATAL => qw(all); @@ -49,7 +45,7 @@ sub create_directory($$) { } sub execute(@) { - print_format "<|BOLD \$|> @_\n"; + say console_format "<|BOLD \$|> @_"; return system @_; }