blob: 491a9dbd9a7a1343a21f999d00fa83b6133950ce (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
if [ "$2" != POST-INSTALL ] ; then
exit 0
fi
INCLUDEDIR=/usr/include
install -d ${PREFIX}/lib/perl5/site_perl/5.6.0/arch
cd ${INCLUDEDIR} && ${PREFIX}/bin/h2ph *.h machine/*.h sys/*.h
exit 0
|