X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=make%2Fcommon.pm;h=7046b878fe10324c3cde6f2b9e0629397393afa5;hb=405396945a7a3f8f120ad71386b039edfcae0657;hp=4d4cd397ce956555a68e62c84d4d865aebd1f836;hpb=8f62016f16cf2419817738904153cb3711b20d7e;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/make/common.pm b/make/common.pm index 4d4cd397c..7046b878f 100644 --- a/make/common.pm +++ b/make/common.pm @@ -1,7 +1,7 @@ # # InspIRCd -- Internet Relay Chat Daemon # -# Copyright (C) 2014-2017, 2019-2020 Sadie Powell +# Copyright (C) 2014-2017, 2019-2021 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 @_; }