/usr/share/perl-cross-debian/perl-cross-native.sh is in perl-cross-debian 0.0.5.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 | #!/bin/sh
set -e
set -x
if [ -f config.h ]; then
rm config.h
fi
if [ -f config.sh ]; then
rm config.sh
fi
./Configure -des -Dusedevel 2>&1 | tee ../upstream-native.log
make uudmap.h
|