diff options
author | ailin-nemui <ailin-nemui@users.noreply.github.com> | 2016-03-30 10:14:57 +0200 |
---|---|---|
committer | ailin-nemui <ailin-nemui@users.noreply.github.com> | 2016-08-04 10:02:28 +0200 |
commit | 9ee480377055c04ae687c08d17f2c6b191d34db0 (patch) | |
tree | 0a2e82491bd1a60324561343f8c5ede588027999 /src/perl | |
parent | 3e28bf7a94eea8e75bf70ef322769991b05c2a65 (diff) | |
download | irssi-9ee480377055c04ae687c08d17f2c6b191d34db0.zip |
remove curses terminal and ncurses macro
Diffstat (limited to 'src/perl')
-rw-r--r-- | src/perl/Makefile.am | 2 | ||||
-rw-r--r-- | src/perl/Makefile_silent.pm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/perl/Makefile.am b/src/perl/Makefile.am index b17fd664..427c5492 100644 --- a/src/perl/Makefile.am +++ b/src/perl/Makefile.am @@ -127,7 +127,7 @@ am_v_pl__show_gen = $(am__v_pl__show_gen_$(V)) am_v_pl__hide_gen = $(am__v_pl__hide_gen_$(V)) am__v_pl__show_gen_ = $(am__v_pl__show_gen_$(AM_DEFAULT_VERBOSITY)) am__v_pl__hide_gen_ = $(am__v_pl__hide_gen_$(AM_DEFAULT_VERBOSITY)) -am__v_pl__show_gen_0 = echo " GEN " $$dir ; +am__v_pl__show_gen_0 = echo " GEN " $$dir ; am__v_pl__hide_gen_0 = > /dev/null am__v_pl__show_gen_1 = am__v_pl__hide_gen_1 = diff --git a/src/perl/Makefile_silent.pm b/src/perl/Makefile_silent.pm index 372e4046..b5d71d66 100644 --- a/src/perl/Makefile_silent.pm +++ b/src/perl/Makefile_silent.pm @@ -3,7 +3,7 @@ my $verb = $AM_DEFAULT_VERBOSITY; { package MY; sub _center { my $z = shift; - length $z == 2 ? " $z " : length $z == 4 ? " $z " : " $z " + (length $z == 2 ? " $z " : length $z == 4 ? " $z " : " $z ").' ' } sub _silent_cmd { my $z = shift; |