Files
termux-packages/packages/perl
termux-pacman-bot c98e649bac enhance(main/perl): link against libandroid-utimes
Currently running perl code like:

  #!/data/data/com.termux/files/usr/bin/perl
  use strict;
  my $t = time;
  open my $fh, '+<', "testfile" or die "open(testfile): $!";
  utime($t, $t, $fh);

Gives an error:

  The futimes function is unimplemented at test.pl line 7.

Fix this by linking against recently added libandroid-utimes library.
2024-03-25 20:37:31 +00:00
..