home *** CD-ROM | disk | FTP | other *** search
- #!/sbin/sh
- #
- # Alright, compute them perl libs
-
- chdir $rbase/usr/include
-
- # sys and netinet are always going to be there, net and arpa maybe not.
-
- chroot $rbase/ /usr/sbin/h2ph *.h sys/*.h netinet/*.h > /dev/null
-
- if [ -d net ]
- then
- chroot $rbase/ /usr/sbin/h2ph net/*.h > /dev/null
- fi
-
- if [ -d arpa ]
- then
- chroot $rbase/ /usr/sbin/h2ph arpa/*.h > /dev/null
- fi
-
- # Poof!
-
- rm $rbase/usr/lib/perl/make.libs
-
-