mirror of
https://github.com/termux-pacman/termux-packages.git
synced 2026-01-02 09:00:20 +00:00
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.