dc7016253b
PR: 28462 OK'ed by: markm
14 lines
207 B
Bash
14 lines
207 B
Bash
#!/bin/sh
|
|
|
|
if [ "$2" != POST-INSTALL ] ; then
|
|
exit 0
|
|
fi
|
|
|
|
INCLUDEDIR=/usr/include
|
|
|
|
install -d ${PREFIX}/lib/perl5/site_perl/5.6.1/arch
|
|
cd ${INCLUDEDIR} && ${PREFIX}/bin/h2ph *.h machine/*.h sys/*.h
|
|
|
|
|
|
exit 0
|