AF:
NF:0
PS:10
SRH:1
SFN:
DSR:
MID:<20070920115753.0e7b6f1a@ripper.onstor.net>
CFG:
PT:0
S:andy.sharp@onstor.com
RQ:
SSV:onstor-exch02.onstor.net
NSV:
SSH:
R:<larry.scheer@onstor.com>
MAID:1
X-Sylpheed-Privacy-System:
X-Sylpheed-Sign:0
SCF:#mh/Mailbox/sent
X-Sylpheed-End-Special-Headers: 1
Date: Thu, 20 Sep 2007 12:00:39 -0700
From: Andrew Sharp <andy.sharp@onstor.com>
To: Larry Scheer <larry.scheer@onstor.com>
Subject: log from bsd build on ripper
Message-ID: <20070920120039.545c28fd@ripper.onstor.net>
Organization: Onstor
X-Mailer: Sylpheed-Claws 2.6.0 (GTK+ 2.8.20; x86_64-pc-linux-gnu)
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary=MP_UQEOkzGQSktncIx1TkEOiau

--MP_UQEOkzGQSktncIx1TkEOiau
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

Larry, attached is the log from trying to build bsd on ripper.  One of
the important changes I made was to replace pax with tar in
openbsd/src/include/Makefile, however, ${DESTDIR} does not seem to be
set to anything when that makefile runs, so it installs a bunch of
shiite in /usr/cross instead of a relative directory.

Any ideas?

$ p4 diff openbsd/src/include/Makefile
==== //depot/dev/openbsd/src/include/Makefile#1 - /home/andy/src/dev/openbsd/src/include/Makefile ====
131a132,136
> #     cd ../sys; \
> #     pax -rw -pa -L \
> #         `find ${LDIRS} -follow -type f -name '*.h' '!' -path \
> #         'netiso/xebec/*' '!' -path 'dev/microcode/*' \
> #         -print` ${DESTDIR}/usr/include
133,136c138,139
<       pax -rw -pa -L \
<           `find ${LDIRS} -follow -type f -name '*.h' '!' -path \
<           'netiso/xebec/*' '!' -path 'dev/microcode/*' \
<           -print` ${DESTDIR}/usr/include
---
>               tar chf - ${LDIRS} | (cd $(DESTDIR)/usr/include && \
>               tar xvf - --wildcards --exclude=netiso/xebec --exclude=dev/microcode \*.h)
140,142c143,147
<       pax -rw -pa -s "|\.\./sys/arch/${MACHINE}/include||" \
<           ../sys/arch/${MACHINE}/include/*.h \
<           ${DESTDIR}/usr/include/${MACHINE}
---
> #     pax -rw -pa -s "|\.\./sys/arch/${MACHINE}/include||" \
> #         ../sys/arch/${MACHINE}/include/*.h \
> #         ${DESTDIR}/usr/include/${MACHINE}
>       (cd ../sys/arch/${MACHINE}/include && tar cf - *.h) | \
>               (cd ${DESTDIR}/usr/include/${MACHINE} && tar xvf -)
147,149c152,153
<               pax -rw -pa -s "|\.\./sys/arch/${MACHINE_ARCH}/include||" \
<                   ../sys/arch/${MACHINE_ARCH}/include/*.h \
<                   ${DESTDIR}/usr/include/${MACHINE_ARCH}; \
---
>               (cd ../sys/arch/${MACHINE_ARCH}/include && tar cf - *.h) | \
>                       (cd ${DESTDIR}/usr/include/${MACHINE_ARCH} && tar xvf -) \

--MP_UQEOkzGQSktncIx1TkEOiau
Content-Type: text/x-log; name=cross-base.log
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename=cross-base.log

export BOOT_TOOLS=${PWD}/boot-tools;\
	export FILESDIR=${BOOT_TOOLS}/usr/share/mk;\
	export BSDMAKE="${BOOT_TOOLS}/usr/bin/bsdmake -m ${FILESDIR}";\
	export DESTDIR=${PWD}/openbsd.new;\
	export SRCDIR=${PWD}/openbsd.new;\
	export SUDO=sudo;\
	export MAKEFLAGS=;\
	cd openbsd.new/src && sudo ${BSDMAKE} cross-helpers cross-dirs TARGET=pmonmips
mkdir -p /usr/cross/pmonmips
echo _MACHINE_ARCH |  cat /home/andy/src/dev/openbsd/src/sys/arch/pmonmips/include/param.h - |  grep -v '^#include' |  gcc -E -I/home/andy/src/dev/openbsd/src/sys/arch - |  sed -n '$p' >/usr/cross/pmonmips/TARGET_ARCH
eval `grep '^osr=' sys/conf/newvers.sh`;  sed "s/\$/el-unknown-openbsd$osr/" /usr/cross/pmonmips/TARGET_ARCH >  /usr/cross/pmonmips/TARGET_CANON
Creating CROSSDIR directories in cross-dirs target
export BOOT_TOOLS=${PWD}/boot-tools;\
	export FILESDIR=${BOOT_TOOLS}/usr/share/mk;\
	export BSDMAKE="${BOOT_TOOLS}/usr/bin/bsdmake -m ${FILESDIR}";\
	export DESTDIR=${PWD}/openbsd.new;\
	export SRCDIR=${PWD}/openbsd.new;\
	export SUDO=sudo;\
	export MAKEFLAGS=;\
	cd openbsd.new/src && sudo ${BSDMAKE} cross-includes TARGET=pmonmips
Creating CROSSDIR directories in cross-dirs target
export MACHINE=pmonmips MACHINE_ARCH=`cat /usr/cross/pmonmips/TARGET_ARCH`; /home/andy/src/dev/boot-tools/usr/bin/bsdmake DESTDIR=/usr/cross/pmonmips includes
(cd /home/andy/src/dev/openbsd/src/include; /home/andy/src/dev/boot-tools/usr/bin/bsdmake prereq; /home/andy/src/dev/boot-tools/usr/bin/bsdmake includes)
preparing in /home/andy/src/dev/openbsd/src/include/../lib/libssl
preparing in /home/andy/src/dev/openbsd/src/include/../usr.sbin/httpd
preparing in /home/andy/src/dev/openbsd/src/include/../gnu/egcs/libf2c
copies: crypto ddb dev isofs miscfs net netatalk netccitt netinet netinet6 netipx netiso netnatm netns neteee nfs scsi sys ufs uvm vm xfs
cd ../sys;  tar chf - crypto ddb dev isofs miscfs net netatalk netccitt netinet  netinet6 netipx netiso netnatm netns neteee nfs scsi sys ufs uvm vm xfs | (cd /usr/cross/pmonmips/usr/include &&  tar xvf - --wildcards --exclude=netiso/xebec --exclude=dev/microcode \*.h)
crypto/blf.h
crypto/cast.h
crypto/castsb.h
crypto/crypto.h
crypto/cryptosoft.h
crypto/des.h
crypto/des_locl.h
crypto/podd.h
crypto/rijndael.h
crypto/rmd160.h
crypto/sha1.h
crypto/sk.h
crypto/skipjack.h
crypto/spr.h
crypto/xform.h
ddb/db_access.h
ddb/db_aout.h
ddb/db_break.h
ddb/db_command.h
ddb/db_extern.h
ddb/db_interface.h
ddb/db_lex.h
ddb/db_output.h
ddb/db_run.h
ddb/db_sym.h
ddb/db_var.h
ddb/db_variables.h
ddb/db_watch.h
dev/ata/atareg.h
dev/ata/atavar.h
dev/ata/wdvar.h
dev/auconv.h
dev/audio_if.h
dev/audiovar.h
dev/cardbus/cardbus_exrom.h
dev/cardbus/cardbusdevs.h
dev/cardbus/cardbusdevs_data.h
dev/cardbus/cardbusvar.h
dev/cardbus/cardslotvar.h
dev/cardbus/rbus.h
dev/ccdvar.h
dev/clock_subr.h
dev/cons.h
dev/eisa/eisadevs.h
dev/eisa/eisadevs_data.h
dev/eisa/eisareg.h
dev/eisa/eisavar.h
dev/ic/ac97.h
dev/ic/ad1848reg.h
dev/ic/adv.h
dev/ic/advlib.h
dev/ic/advmcode.h
dev/ic/adw.h
dev/ic/adwlib.h
dev/ic/adwmcode.h
dev/ic/aic6360reg.h
dev/ic/aic6360var.h
dev/ic/aic7xxxreg.h
dev/ic/aic7xxxvar.h
dev/ic/am7930reg.h
dev/ic/am7990reg.h
dev/ic/am7990var.h
dev/ic/am79c930reg.h
dev/ic/am79c930var.h
dev/ic/anreg.h
dev/ic/anvar.h
dev/ic/awireg.h
dev/ic/awivar.h
dev/ic/bt463reg.h
dev/ic/bt463var.h
dev/ic/bt485reg.h
dev/ic/bt485var.h
dev/ic/cd1190reg.h
dev/ic/cd1400reg.h
dev/ic/comreg.h
dev/ic/comvar.h
dev/ic/cs4231reg.h
dev/ic/cyreg.h
dev/ic/dc21040reg.h
dev/ic/dcreg.h
dev/ic/dp8390reg.h
dev/ic/dp8390var.h
dev/ic/dp857xreg.h
dev/ic/dptreg.h
dev/ic/dptvar.h
dev/ic/ds.h
dev/ic/elink3reg.h
dev/ic/elink3var.h
dev/ic/espreg.h
dev/ic/fxpreg.h
dev/ic/fxpvar.h
dev/ic/gdtreg.h
dev/ic/gdtvar.h
dev/ic/hayespreg.h
dev/ic/i8042reg.h
dev/ic/i82365reg.h
dev/ic/i82365var.h
dev/ic/i8237reg.h
dev/ic/i8253reg.h
dev/ic/i82586reg.h
dev/ic/i82595reg.h
dev/ic/i82596reg.h
dev/ic/i82596var.h
dev/ic/i82802reg.h
dev/ic/ics2101reg.h
dev/ic/intersil7170.h
dev/ic/isp_inline.h
dev/ic/isp_openbsd.h
dev/ic/isp_target.h
dev/ic/isp_tpublic.h
dev/ic/ispmbox.h
dev/ic/ispreg.h
dev/ic/ispvar.h
dev/ic/lptreg.h
dev/ic/lptvar.h
dev/ic/mb86960reg.h
dev/ic/mc146818reg.h
dev/ic/mc6845.h
dev/ic/midwayreg.h
dev/ic/midwayvar.h
dev/ic/monitors.h
dev/ic/mpuvar.h
dev/ic/ncr5380reg.h
dev/ic/ncr5380var.h
dev/ic/ncr53c9xreg.h
dev/ic/ncr53c9xvar.h
dev/ic/ne2000reg.h
dev/ic/ne2000var.h
dev/ic/nec765reg.h
dev/ic/ns16450reg.h
dev/ic/ns16550reg.h
dev/ic/opl3sa3reg.h
dev/ic/oplreg.h
dev/ic/oplvar.h
dev/ic/pdqreg.h
dev/ic/pdqvar.h
dev/ic/ramdac.h
dev/ic/rln.h
dev/ic/rlncmd.h
dev/ic/rlnreg.h
dev/ic/rlnvar.h
dev/ic/rtl80x9reg.h
dev/ic/rtl80x9var.h
dev/ic/s3_617.h
dev/ic/smc90cx6reg.h
dev/ic/smc91cxxreg.h
dev/ic/smc91cxxvar.h
dev/ic/smc93cx6var.h
dev/ic/stireg.h
dev/ic/stivar.h
dev/ic/tcic2reg.h
dev/ic/tcic2var.h
dev/ic/tropicreg.h
dev/ic/tropicvar.h
dev/ic/twereg.h
dev/ic/twevar.h
dev/ic/uhareg.h
dev/ic/uhavar.h
dev/ic/vgavar.h
dev/ic/wdcreg.h
dev/ic/wdcvar.h
dev/ic/xlreg.h
dev/ic/z8530reg.h
dev/ic/z8530sc.h
dev/ic/z8536reg.h
dev/isa/ad1848var.h
dev/isa/ahareg.h
dev/isa/ariareg.h
dev/isa/btreg.h
dev/isa/cs4231var.h
dev/isa/elink.h
dev/isa/essreg.h
dev/isa/essvar.h
dev/isa/fdlink.h
dev/isa/fdreg.h
dev/isa/gusreg.h
dev/isa/gusvar.h
dev/isa/i82365_isavar.h
dev/isa/ics2101var.h
dev/isa/if_ecreg.h
dev/isa/if_edreg.h
dev/isa/if_egreg.h
dev/isa/if_elreg.h
dev/isa/if_exreg.h
dev/isa/if_fereg.h
dev/isa/if_ie507.h
dev/isa/if_ieatt.h
dev/isa/if_iee16.h
dev/isa/if_levar.h
dev/isa/if_wereg.h
dev/isa/isadmareg.h
dev/isa/isadmavar.h
dev/isa/isapnpreg.h
dev/isa/isareg.h
dev/isa/isavar.h
dev/isa/madreg.h
dev/isa/mcdreg.h
dev/isa/opti.h
dev/isa/pasreg.h
dev/isa/pcppireg.h
dev/isa/pcppivar.h
dev/isa/pnpdevs.h
dev/isa/pssreg.h
dev/isa/sbdspvar.h
dev/isa/sbreg.h
dev/isa/sbvar.h
dev/isa/spkrio.h
dev/isa/vga_isavar.h
dev/isa/wdsreg.h
dev/isa/wssreg.h
dev/isa/wssvar.h
dev/isa/wtreg.h
dev/isa/ymvar.h
dev/midi_if.h
dev/midisynvar.h
dev/midivar.h
dev/mii/amphyreg.h
dev/mii/brgphyreg.h
dev/mii/icsphyreg.h
dev/mii/inphyreg.h
dev/mii/iophyreg.h
dev/mii/lxtphyreg.h
dev/mii/mii.h
dev/mii/miidevs.h
dev/mii/miivar.h
dev/mii/mtdphyreg.h
dev/mii/nsphyreg.h
dev/mii/nsphyterreg.h
dev/mii/qsphyreg.h
dev/mii/sqphyreg.h
dev/mii/tlphyreg.h
dev/mii/tlphyvar.h
dev/mii/tqphyreg.h
dev/mii/txphyreg.h
dev/mii/xmphyreg.h
dev/mulaw.h
dev/ofw/openfirm.h
dev/pci/auviavar.h
dev/pci/brktree_reg.h
dev/pci/cmpcireg.h
dev/pci/cmpcivar.h
dev/pci/cs4280_image.h
dev/pci/cs4280reg.h
dev/pci/cy82c693reg.h
dev/pci/cy82c693var.h
dev/pci/esoreg.h
dev/pci/esovar.h
dev/pci/fmsvar.h
dev/pci/hifn7751reg.h
dev/pci/hifn7751var.h
dev/pci/i82365_pcivar.h
dev/pci/if_devar.h
dev/pci/if_levar.h
dev/pci/if_lmc_types.h
dev/pci/if_lmcioctl.h
dev/pci/if_lmcvar.h
dev/pci/if_rlreg.h
dev/pci/if_sfreg.h
dev/pci/if_sipreg.h
dev/pci/if_sisreg.h
dev/pci/if_skreg.h
dev/pci/if_stereg.h
dev/pci/if_tireg.h
dev/pci/if_tlreg.h
dev/pci/if_txvar.h
dev/pci/if_vrreg.h
dev/pci/if_wbreg.h
dev/pci/if_wxreg.h
dev/pci/if_wxvar.h
dev/pci/ncrreg.h
dev/pci/neo-coeff.h
dev/pci/neoreg.h
dev/pci/pccbbreg.h
dev/pci/pccbbvar.h
dev/pci/pcidevs.h
dev/pci/pcidevs_data.h
dev/pci/pciide_acer_reg.h
dev/pci/pciide_amd_reg.h
dev/pci/pciide_apollo_reg.h
dev/pci/pciide_cmd_reg.h
dev/pci/pciide_cy693_reg.h
dev/pci/pciide_opti_reg.h
dev/pci/pciide_pdc202xx_reg.h
dev/pci/pciide_piix_reg.h
dev/pci/pciide_sis_reg.h
dev/pci/pciidereg.h
dev/pci/pciidevar.h
dev/pci/pcireg.h
dev/pci/pcivar.h
dev/pci/ppbreg.h
dev/pci/pucvar.h
dev/pci/tgareg.h
dev/pci/tgavar.h
dev/pci/ti_fw.h
dev/pci/ti_fw2.h
dev/pci/ubsecreg.h
dev/pci/ubsecvar.h
dev/pci/vga_pcivar.h
dev/pci/wdt50x.h
dev/pci/xmaciireg.h
dev/pcmcia/if_cnwreg.h
dev/pcmcia/if_rayreg.h
dev/pcmcia/if_wavelan_ieee.h
dev/pcmcia/if_wireg.h
dev/pcmcia/if_xereg.h
dev/pcmcia/pcmciachip.h
dev/pcmcia/pcmciadevs.h
dev/pcmcia/pcmciareg.h
dev/pcmcia/pcmciavar.h
dev/raidframe/rf_acctrace.h
dev/raidframe/rf_alloclist.h
dev/raidframe/rf_archs.h
dev/raidframe/rf_aselect.h
dev/raidframe/rf_callback.h
dev/raidframe/rf_chaindecluster.h
dev/raidframe/rf_configure.h
dev/raidframe/rf_copyback.h
dev/raidframe/rf_cvscan.h
dev/raidframe/rf_dag.h
dev/raidframe/rf_dagdegrd.h
dev/raidframe/rf_dagdegwr.h
dev/raidframe/rf_dagffrd.h
dev/raidframe/rf_dagffwr.h
dev/raidframe/rf_dagflags.h
dev/raidframe/rf_dagfuncs.h
dev/raidframe/rf_dagutils.h
dev/raidframe/rf_debugMem.h
dev/raidframe/rf_debugprint.h
dev/raidframe/rf_decluster.h
dev/raidframe/rf_declusterPQ.h
dev/raidframe/rf_desc.h
dev/raidframe/rf_diskqueue.h
dev/raidframe/rf_disks.h
dev/raidframe/rf_driver.h
dev/raidframe/rf_engine.h
dev/raidframe/rf_etimer.h
dev/raidframe/rf_evenodd.h
dev/raidframe/rf_evenodd_dagfuncs.h
dev/raidframe/rf_evenodd_dags.h
dev/raidframe/rf_fifo.h
dev/raidframe/rf_freelist.h
dev/raidframe/rf_general.h
dev/raidframe/rf_hist.h
dev/raidframe/rf_interdecluster.h
dev/raidframe/rf_invertq.h
dev/raidframe/rf_kintf.h
dev/raidframe/rf_layout.h
dev/raidframe/rf_map.h
dev/raidframe/rf_mcpair.h
dev/raidframe/rf_memchunk.h
dev/raidframe/rf_netbsd.h
dev/raidframe/rf_nwayxor.h
dev/raidframe/rf_openbsd.h
dev/raidframe/rf_options.h
dev/raidframe/rf_optnames.h
dev/raidframe/rf_paritylog.h
dev/raidframe/rf_paritylogDiskMgr.h
dev/raidframe/rf_paritylogging.h
dev/raidframe/rf_parityloggingdags.h
dev/raidframe/rf_parityscan.h
dev/raidframe/rf_pq.h
dev/raidframe/rf_pqdeg.h
dev/raidframe/rf_pqdegdags.h
dev/raidframe/rf_psstatus.h
dev/raidframe/rf_raid.h
dev/raidframe/rf_raid0.h
dev/raidframe/rf_raid1.h
dev/raidframe/rf_raid4.h
dev/raidframe/rf_raid5.h
dev/raidframe/rf_raid5_rotatedspare.h
dev/raidframe/rf_raidframe.h
dev/raidframe/rf_reconbuffer.h
dev/raidframe/rf_reconmap.h
dev/raidframe/rf_reconstruct.h
dev/raidframe/rf_reconutil.h
dev/raidframe/rf_revent.h
dev/raidframe/rf_shutdown.h
dev/raidframe/rf_sstf.h
dev/raidframe/rf_states.h
dev/raidframe/rf_stripelocks.h
dev/raidframe/rf_threadstuff.h
dev/raidframe/rf_types.h
dev/raidframe/rf_utils.h
dev/ramdisk.h
dev/rcons/raster.h
dev/rcons/rcons.h
dev/rcons/rcons_subr.h
dev/rndioctl.h
dev/rndvar.h
dev/sequencervar.h
dev/sun/event_var.h
dev/sun/kbd_tables.h
dev/sun/kbd_xlate.h
dev/tc/ascvar.h
dev/tc/if_levar.h
dev/tc/ioasicvar.h
dev/tc/tcdevs.h
dev/tc/tcdevs_data.h
dev/tc/tcreg.h
dev/tc/tcvar.h
dev/usb/hid.h
dev/usb/if_auereg.h
dev/usb/if_cuereg.h
dev/usb/if_kuereg.h
dev/usb/kue_fw.h
dev/usb/ohcireg.h
dev/usb/ohcivar.h
dev/usb/uaudioreg.h
dev/usb/ucomvar.h
dev/usb/uhcireg.h
dev/usb/uhcivar.h
dev/usb/ukbdvar.h
dev/usb/urio.h
dev/usb/usb.h
dev/usb/usb_mem.h
dev/usb/usb_port.h
dev/usb/usb_quirks.h
dev/usb/usbcdc.h
dev/usb/usbdevs.h
dev/usb/usbdevs_data.h
dev/usb/usbdi.h
dev/usb/usbdi_util.h
dev/usb/usbdivar.h
dev/usb/usbhid.h
dev/vndioctl.h
dev/wscons/ascii.h
dev/wscons/unicode.h
dev/wscons/wscons_callbacks.h
dev/wscons/wscons_raster.h
dev/wscons/wscons_rfont.h
dev/wscons/wsconsio.h
dev/wscons/wsdisplay_usl_io.h
dev/wscons/wsdisplayvar.h
dev/wscons/wsemul_vt100var.h
dev/wscons/wsemulvar.h
dev/wscons/wseventvar.h
dev/wscons/wskbdvar.h
dev/wscons/wsksymdef.h
dev/wscons/wsksymvar.h
dev/wscons/wsmousevar.h
dev/wscons/wsmuxvar.h
isofs/cd9660/cd9660_extern.h
isofs/cd9660/cd9660_mount.h
isofs/cd9660/cd9660_node.h
isofs/cd9660/cd9660_rrip.h
isofs/cd9660/iso.h
isofs/cd9660/iso_rrip.h
miscfs/fdesc/fdesc.h
miscfs/fifofs/fifo.h
miscfs/kernfs/kernfs.h
miscfs/nullfs/null.h
miscfs/portal/portal.h
miscfs/procfs/procfs.h
miscfs/specfs/specdev.h
miscfs/tcfs/tcfs.h
miscfs/tcfs/tcfs_cipher.h
miscfs/tcfs/tcfs_cmd.h
miscfs/tcfs/tcfs_fileinfo.h
miscfs/tcfs/tcfs_keytab.h
miscfs/tcfs/tcfs_mount.h
miscfs/tcfs/tcfs_rw.h
miscfs/tcfs/tcfs_version.h
miscfs/umapfs/umap.h
miscfs/union/union.h
net/bpf.h
net/bpfdesc.h
net/if.h
net/if_arp.h
net/if_atm.h
net/if_bridge.h
net/if_dl.h
net/if_enc.h
net/if_fddi.h
net/if_gif.h
net/if_gre.h
net/if_ieee80211.h
net/if_llc.h
net/if_media.h
net/if_ppp.h
net/if_pppvar.h
net/if_slvar.h
net/if_sppp.h
net/if_stripvar.h
net/if_token.h
net/if_tun.h
net/if_types.h
net/if_vlan_var.h
net/net_osdep.h
net/netisr.h
net/pfkeyv2.h
net/ppp-comp.h
net/ppp_defs.h
net/radix.h
net/raw_cb.h
net/route.h
net/slcompress.h
net/slip.h
net/zlib.h
netatalk/aarp.h
netatalk/at.h
netatalk/at_extern.h
netatalk/at_var.h
netatalk/ddp.h
netatalk/ddp_var.h
netatalk/endian.h
netatalk/phase2.h
netccitt/dll.h
netccitt/hd_var.h
netccitt/hdlc.h
netccitt/llc_var.h
netccitt/pk.h
netccitt/pk_extern.h
netccitt/pk_var.h
netccitt/x25.h
netccitt/x25acct.h
netccitt/x25err.h
netinet/icmp6.h
netinet/icmp_var.h
netinet/if_arc.h
netinet/if_atm.h
netinet/if_ether.h
netinet/igmp.h
netinet/igmp_var.h
netinet/in.h
netinet/in_gif.h
netinet/in_pcb.h
netinet/in_systm.h
netinet/in_var.h
netinet/ip.h
netinet/ip6.h
netinet/ip_ah.h
netinet/ip_auth.h
netinet/ip_ecn.h
netinet/ip_esp.h
netinet/ip_ether.h
netinet/ip_fil.h
netinet/ip_fil_compat.h
netinet/ip_frag.h
netinet/ip_gre.h
netinet/ip_icmp.h
netinet/ip_ipip.h
netinet/ip_ipsp.h
netinet/ip_mroute.h
netinet/ip_nat.h
netinet/ip_proxy.h
netinet/ip_state.h
netinet/ip_var.h
netinet/ipl.h
netinet/tcp.h
netinet/tcp_debug.h
netinet/tcp_fsm.h
netinet/tcp_seq.h
netinet/tcp_timer.h
netinet/tcp_var.h
netinet/tcpip.h
netinet/udp.h
netinet/udp_var.h
netinet6/in6.h
netinet6/in6_gif.h
netinet6/in6_ifattach.h
netinet6/in6_prefix.h
netinet6/in6_var.h
netinet6/ip6_mroute.h
netinet6/ip6_var.h
netinet6/ip6protosw.h
netinet6/mld6_var.h
netinet6/nd6.h
netinet6/osdep.h
netinet6/pim6.h
netinet6/pim6_var.h
netinet6/tcpipv6.h
netipx/ipx.h
netipx/ipx_if.h
netipx/ipx_ip.h
netipx/ipx_pcb.h
netipx/ipx_var.h
netipx/spx.h
netipx/spx_debug.h
netipx/spx_timer.h
netipx/spx_var.h
netiso/argo_debug.h
netiso/clnl.h
netiso/clnp.h
netiso/clnp_stat.h
netiso/cltp_var.h
netiso/cons.h
netiso/cons_pcb.h
netiso/eonvar.h
netiso/esis.h
netiso/idrp_var.h
netiso/iso.h
netiso/iso_errno.h
netiso/iso_pcb.h
netiso/iso_snpac.h
netiso/iso_var.h
netiso/tp_clnp.h
netiso/tp_events.h
netiso/tp_ip.h
netiso/tp_meas.h
netiso/tp_param.h
netiso/tp_pcb.h
netiso/tp_seq.h
netiso/tp_stat.h
netiso/tp_states.h
netiso/tp_timer.h
netiso/tp_tpdu.h
netiso/tp_trace.h
netiso/tp_user.h
netiso/tp_var.h
netiso/tuba_table.h
netnatm/natm.h
netns/idp.h
netns/idp_var.h
netns/ns.h
netns/ns_error.h
netns/ns_if.h
netns/ns_pcb.h
netns/ns_var.h
netns/sp.h
netns/spidp.h
netns/spp_debug.h
netns/spp_timer.h
netns/spp_var.h
neteee/eee.h
neteee/eee_if.h
neteee/eee_pcb.h
neteee/eee_var.h
neteee/ether_eee.h
neteee/ip_eee.h
neteee/nfx-error.h
nfs/krpc.h
nfs/nfs.h
nfs/nfs_var.h
nfs/nfsdiskless.h
nfs/nfsm_subs.h
nfs/nfsmount.h
nfs/nfsnode.h
nfs/nfsproto.h
nfs/nfsrtt.h
nfs/nfsrvcache.h
nfs/nqnfs.h
nfs/rpcv2.h
nfs/xdr_subs.h
scsi/atapi_all.h
scsi/atapi_cd.h
scsi/atapi_disk.h
scsi/cd.h
scsi/cdvar.h
scsi/scsi_all.h
scsi/scsi_cd.h
scsi/scsi_changer.h
scsi/scsi_debug.h
scsi/scsi_disk.h
scsi/scsi_message.h
scsi/scsi_scanner.h
scsi/scsi_tape.h
scsi/scsiconf.h
scsi/sdvar.h
scsi/ses.h
scsi/ss_mustek.h
scsi/ssvar.h
sys/acct.h
sys/ataio.h
sys/audioio.h
sys/buf.h
sys/cdefs.h
sys/cdio.h
sys/chio.h
sys/clist.h
sys/conf.h
sys/core.h
sys/device.h
sys/dir.h
sys/dirent.h
sys/disk.h
sys/disklabel.h
sys/dkbad.h
sys/dkio.h
sys/dkstat.h
sys/dmap.h
sys/domain.h
sys/endian.h
sys/errno.h
sys/exec.h
sys/exec_aout.h
sys/exec_ecoff.h
sys/exec_elf.h
sys/exec_olf.h
sys/exec_script.h
sys/extent.h
sys/fcntl.h
sys/file.h
sys/filedesc.h
sys/filio.h
sys/gmon.h
sys/ioccom.h
sys/ioctl.h
sys/ioctl_compat.h
sys/ipc.h
sys/kcore.h
sys/kernel.h
sys/kgdb.h
sys/kthread.h
sys/ktrace.h
sys/lkm.h
sys/localedef.h
sys/lock.h
sys/lockf.h
sys/malloc.h
sys/map.h
sys/mbuf.h
sys/md5k.h
sys/memrange.h
sys/midiio.h
sys/mman.h
sys/mount.h
sys/msg.h
sys/msgbuf.h
sys/mtio.h
sys/namei.h
sys/param.h
sys/pipe.h
sys/poll.h
sys/pool.h
sys/proc.h
sys/protosw.h
sys/ptrace.h
sys/queue.h
sys/reboot.h
sys/resource.h
sys/resourcevar.h
sys/scanio.h
sys/sched.h
sys/scsiio.h
sys/select.h
sys/sem.h
sys/shm.h
sys/siginfo.h
sys/signal.h
sys/signalvar.h
sys/simplelock.h
sys/socket.h
sys/socketvar.h
sys/sockio.h
sys/stat.h
sys/swap.h
sys/syscall.h
sys/syscallargs.h
sys/sysctl.h
sys/syslimits.h
sys/syslog.h
sys/systm.h
sys/tablet.h
sys/termios.h
sys/time.h
sys/timeb.h
sys/timeout.h
sys/times.h
sys/timex.h
sys/tprintf.h
sys/tree.h
sys/tty.h
sys/ttychars.h
sys/ttycom.h
sys/ttydefaults.h
sys/ttydev.h
sys/types.h
sys/ucred.h
sys/uio.h
sys/un.h
sys/unistd.h
sys/unpcb.h
sys/user.h
sys/utsname.h
sys/vadvise.h
sys/vcmd.h
sys/vlimit.h
sys/vmmeter.h
sys/vnode.h
sys/vnode_if.h
sys/vsio.h
sys/wait.h
ufs/ext2fs/ext2fs.h
ufs/ext2fs/ext2fs_dinode.h
ufs/ext2fs/ext2fs_dir.h
ufs/ext2fs/ext2fs_extern.h
ufs/ffs/ffs_extern.h
ufs/ffs/fs.h
ufs/ffs/softdep.h
ufs/lfs/lfs.h
ufs/lfs/lfs_extern.h
ufs/mfs/mfs_extern.h
ufs/mfs/mfsnode.h
ufs/ufs/dinode.h
ufs/ufs/dir.h
ufs/ufs/inode.h
ufs/ufs/quota.h
ufs/ufs/ufs_extern.h
ufs/ufs/ufsmount.h
uvm/uvm.h
uvm/uvm_amap.h
uvm/uvm_amap_i.h
uvm/uvm_anon.h
uvm/uvm_aobj.h
uvm/uvm_ddb.h
uvm/uvm_device.h
uvm/uvm_extern.h
uvm/uvm_fault.h
uvm/uvm_fault_i.h
uvm/uvm_glue.h
uvm/uvm_km.h
uvm/uvm_loan.h
uvm/uvm_map.h
uvm/uvm_map_i.h
uvm/uvm_object.h
uvm/uvm_page.h
uvm/uvm_page_i.h
uvm/uvm_pager.h
uvm/uvm_pager_i.h
uvm/uvm_pdaemon.h
uvm/uvm_stat.h
uvm/uvm_swap.h
uvm/uvm_swap_encrypt.h
uvm/uvm_vnode.h
vm/device_pager.h
vm/pglist.h
vm/pmap.h
vm/swap_pager.h
vm/vm.h
vm/vm_conf.h
vm/vm_extern.h
vm/vm_inherit.h
vm/vm_kern.h
vm/vm_map.h
vm/vm_object.h
vm/vm_page.h
vm/vm_pageout.h
vm/vm_pager.h
vm/vm_param.h
vm/vm_prot.h
vm/vnode_pager.h
xfs/nxfs.h
xfs/xfs_attr.h
xfs/xfs_common.h
xfs/xfs_config.h
xfs/xfs_deb.h
xfs/xfs_debug.h
xfs/xfs_dev.h
xfs/xfs_extern.h
xfs/xfs_fs.h
xfs/xfs_global.h
xfs/xfs_locl.h
xfs/xfs_message.h
xfs/xfs_msg_locl.h
xfs/xfs_node.h
xfs/xfs_pioctl.h
xfs/xfs_syscalls.h
xfs/xfs_vfsops-bsd.h
xfs/xfs_vfsops.h
xfs/xfs_vnodeops.h
xfs/xfs_vopdefs.h
cd /usr/cross/pmonmips/usr/include && rm -rf pmonmips mips64 machine
install -d -o 0 -g 7 -m 755  /usr/cross/pmonmips/usr/include/pmonmips
(cd ../sys/arch/pmonmips/include && tar cf - *.h) |  (cd /usr/cross/pmonmips/usr/include/pmonmips && tar xvf -)
ansi.h
asm.h
autoconf.h
bus.h
cdefs.h
cpu.h
db_machdep.h
devpci.h
disklabel.h
display.h
dlfcn.h
ds1511.h
ecoff_machdep.h
elf_abi.h
endian.h
exec.h
float.h
frame.h
gttimervar.h
gtuartvar.h
ieeefp.h
intr.h
joystick.h
kbdreg.h
kcore.h
kdbparam.h
limits.h
link.h
m48t37.h
marvel.h
memconf.h
mips_opcode.h
mouse.h
param.h
pcb.h
pccons.h
pio.h
pmap.h
proc.h
profile.h
psl.h
pte.h
ptrace.h
reg.h
regdef.h
regnum.h
reloc.h
rm7000.h
setjmp.h
signal.h
spinlock.h
stdarg.h
trap.h
types.h
varargs.h
vmparam.h
if test pmonmips != mips64 -a  -d ../sys/arch/mips64/include; then  install -d -o 0 -g 7 -m 755  /usr/cross/pmonmips/usr/include/mips64;  (cd ../sys/arch/mips64/include && tar cf - *.h) |  (cd /usr/cross/pmonmips/usr/include/mips64 && tar xvf -)  fi
ansi.h
archtype.h
asm.h
cdefs.h
cpu.h
db_machdep.h
disklabel.h
dlfcn.h
ecoff_machdep.h
elf_abi.h
exception.h
float.h
frame.h
ieeefp.h
kbdreg.h
kcore.h
kdbparam.h
limits.h
link.h
memconf.h
mips_opcode.h
param.h
pcb.h
pio.h
pmap.h
proc.h
profile.h
ptrace.h
reg.h
regdef.h
regnum.h
reloc.h
setjmp.h
signal.h
spinlock.h
stdarg.h
trap.h
types.h
varargs.h
vmparam.h
ln -sf pmonmips /usr/cross/pmonmips/usr/include/machine;
installing a.out.h ar.h assert.h bitstring.h blf.h bm.h cast.h cpio.h ctype.h curses.h db.h dbm.h des.h dirent.h disktab.h elf_abi.h err.h fnmatch.h fstab.h fts.h glob.h grp.h ifaddrs.h inttypes.h iso646.h kvm.h langinfo.h libgen.h limits.h locale.h login_cap.h malloc.h math.h md4.h md5.h memory.h mpool.h ndbm.h netdb.h netgroup.h nlist.h nl_types.h olf_abi.h paths.h poll.h pwd.h ranlib.h re_comp.h regex.h resolv.h rmd160.h search.h setjmp.h sgtty.h sha1.h skipjack.h signal.h stab.h stdbool.h stddef.h stdio.h stdlib.h string.h strings.h struct.h sysexits.h tar.h time.h ttyent.h tzfile.h unistd.h utime.h utmp.h vis.h ieeefp.h
installing arpa protocols rpc rpcsvc
installing errno.h fcntl.h syslog.h termios.h
installing float.h frame.h stdarg.h varargs.h link.h dlfcn.h
chown -R 0:7 /usr/cross/pmonmips/usr/include
find /usr/cross/pmonmips/usr/include -type f |  xargs chmod a=r
find /usr/cross/pmonmips/usr/include -type d |  xargs chmod u=rwx,go=rx
installing in /home/andy/src/dev/openbsd/src/include/../lib/libc_r
installing in /home/andy/src/dev/openbsd/src/include/../lib/libcom_err
cd /home/andy/src/dev/openbsd/src/lib/libcom_err; cmp -s com_err.h /usr/cross/pmonmips/usr/include/com_err.h >  /dev/null 2>&1 ||  install -c -o 0 -g 7 -m 444 com_err.h  /usr/cross/pmonmips/usr/include/com_err.h
installing in /home/andy/src/dev/openbsd/src/include/../lib/libcompat
cmp -s regexp/regexp.h /usr/cross/pmonmips/usr/include/regexp.h || install -c -o 0 -g 7 -m 444 regexp/regexp.h /usr/cross/pmonmips/usr/include
installing in /home/andy/src/dev/openbsd/src/include/../lib/libcurses
installing in /home/andy/src/dev/openbsd/src/include/../lib/libcurses++
installing in /home/andy/src/dev/openbsd/src/include/../lib/libform
installing in /home/andy/src/dev/openbsd/src/include/../lib/libmenu
installing in /home/andy/src/dev/openbsd/src/include/../lib/libocurses
cd /home/andy/src/dev/openbsd/src/lib/libocurses; cmp -s curses.h /usr/cross/pmonmips/usr/include/ocurses.h ||  install -c -o 0 -g 7 -m 444  curses.h /usr/cross/pmonmips/usr/include/ocurses.h
installing in /home/andy/src/dev/openbsd/src/include/../lib/libossaudio
installing in /home/andy/src/dev/openbsd/src/include/../lib/libpanel
installing in /home/andy/src/dev/openbsd/src/include/../lib/librpcsvc
install -d -o 0 -g 7 -m 755  /usr/cross/pmonmips/usr/include/rpcsvc
installing rpc .h and .x files
installing in /home/andy/src/dev/openbsd/src/include/../lib/libskey
cmp -s skey.h /usr/cross/pmonmips/usr/include/skey.h || install -c -o 0 -g 7 -m 444 skey.h /usr/cross/pmonmips/usr/include
installing in /home/andy/src/dev/openbsd/src/include/../lib/libedit
cd /home/andy/src/dev/openbsd/src/lib/libedit; cmp -s histedit.h /usr/cross/pmonmips/usr/include/histedit.h >  /dev/null 2>&1 ||  install -c -o 0 -g 7 -m 444 histedit.h  /usr/cross/pmonmips/usr/include
installing in /home/andy/src/dev/openbsd/src/include/../lib/libpcap
cmp -s pcap.h /usr/cross/pmonmips/usr/include/pcap.h || install -c -o 0 -g 7 -m 444 pcap.h /usr/cross/pmonmips/usr/include
cmp -s pcap-int.h /usr/cross/pmonmips/usr/include/pcap-int.h || install -c -o 0 -g 7 -m 444 pcap-int.h /usr/cross/pmonmips/usr/include
cmp -s pcap-namedb.h /usr/cross/pmonmips/usr/include/pcap-namedb.h || install -c -o 0 -g 7 -m 444 pcap-namedb.h /usr/cross/pmonmips/usr/include
installing in /home/andy/src/dev/openbsd/src/include/../lib/libutil
cmp -s util.h /usr/cross/pmonmips/usr/include/util.h || install -c -o 0 -g 7 -m 444 util.h /usr/cross/pmonmips/usr/include
cmp -s scsi.h /usr/cross/pmonmips/usr/include/scsi.h || install -c -o 0 -g 7 -m 444 scsi.h /usr/cross/pmonmips/usr/include
installing in /home/andy/src/dev/openbsd/src/include/../lib/libwrap
cmp -s tcpd.h /usr/cross/pmonmips/usr/include/tcpd.h || install -c -o 0 -g 7 -m 444 tcpd.h /usr/cross/pmonmips/usr/include
installing in /home/andy/src/dev/openbsd/src/include/../lib/libz
cmp -s zconf.h /usr/cross/pmonmips/usr/include/zconf.h || install -c -o 0 -g 7 -m 444 zconf.h /usr/cross/pmonmips/usr/include
cmp -s zlib.h /usr/cross/pmonmips/usr/include/zlib.h || install -c -o 0 -g 7 -m 444 zlib.h /usr/cross/pmonmips/usr/include
installing in /home/andy/src/dev/openbsd/src/include/../lib/libkeynote
cmp -s keynote.h /usr/cross/pmonmips/usr/include/keynote.h || install -c -o 0 -g 7 -m 444 keynote.h /usr/cross/pmonmips/usr/include
installing in /home/andy/src/dev/openbsd/src/include/../sys/arch/pmonmips
===> stand
===> stand/installboot
===> stand/bootxx
===> stand/boot.pmon
installing in /home/andy/src/dev/openbsd/src/include/../lib/libssl
cd /home/andy/src/dev/openbsd/src/lib/libssl && /home/andy/src/dev/boot-tools/usr/bin/bsdmake includes
===> crypto
sed 's/<openssl/<ssl/' /home/andy/src/dev/openbsd/src/lib/libssl/crypto/../src/include/openssl/asn1.h >/tmp/libsslWgzuKF4214/asn1.h && (cmp -s /tmp/libsslWgzuKF4214/asn1.h /usr/cross/pmonmips/usr/include/ssl/asn1.h || install -c -o 0 -g 7 -m 444 /tmp/libsslWgzuKF4214/asn1.h /usr/cross/pmonmips/usr/include/ssl)
sed 's/<openssl/<ssl/' /home/andy/src/dev/openbsd/src/lib/libssl/crypto/../src/include/openssl/dh.h >/tmp/libsslWgzuKF4214/dh.h && (cmp -s /tmp/libsslWgzuKF4214/dh.h /usr/cross/pmonmips/usr/include/ssl/dh.h || install -c -o 0 -g 7 -m 444 /tmp/libsslWgzuKF4214/dh.h /usr/cross/pmonmips/usr/include/ssl)
sed 's/<openssl/<ssl/' /home/andy/src/dev/openbsd/src/lib/libssl/crypto/../src/include/openssl/md5.h >/tmp/libsslWgzuKF4214/md5.h && (cmp -s /tmp/libsslWgzuKF4214/md5.h /usr/cross/pmonmips/usr/include/ssl/md5.h || install -c -o 0 -g 7 -m 444 /tmp/libsslWgzuKF4214/md5.h /usr/cross/pmonmips/usr/include/ssl)
sed 's/<openssl/<ssl/' /home/andy/src/dev/openbsd/src/lib/libssl/crypto/../src/include/openssl/rc4.h >/tmp/libsslWgzuKF4214/rc4.h && (cmp -s /tmp/libsslWgzuKF4214/rc4.h /usr/cross/pmonmips/usr/include/ssl/rc4.h || install -c -o 0 -g 7 -m 444 /tmp/libsslWgzuKF4214/rc4.h /usr/cross/pmonmips/usr/include/ssl)
sed 's/<openssl/<ssl/' /home/andy/src/dev/openbsd/src/lib/libssl/crypto/../src/include/openssl/stack.h >/tmp/libsslWgzuKF4214/stack.h && (cmp -s /tmp/libsslWgzuKF4214/stack.h /usr/cross/pmonmips/usr/include/ssl/stack.h || install -c -o 0 -g 7 -m 444 /tmp/libsslWgzuKF4214/stack.h /usr/cross/pmonmips/usr/include/ssl)
sed 's/<openssl/<ssl/' /home/andy/src/dev/openbsd/src/lib/libssl/crypto/../src/include/openssl/asn1_mac.h >/tmp/libsslWgzuKF4214/asn1_mac.h && (cmp -s /tmp/libsslWgzuKF4214/asn1_mac.h /usr/cross/pmonmips/usr/include/ssl/asn1_mac.h || install -c -o 0 -g 7 -m 444 /tmp/libsslWgzuKF4214/asn1_mac.h /usr/cross/pmonmips/usr/include/ssl)
sed 's/<openssl/<ssl/' /home/andy/src/dev/openbsd/src/lib/libssl/crypto/../src/include/openssl/dsa.h >/tmp/libsslWgzuKF4214/dsa.h && (cmp -s /tmp/libsslWgzuKF4214/dsa.h /usr/cross/pmonmips/usr/include/ssl/dsa.h || install -c -o 0 -g 7 -m 444 /tmp/libsslWgzuKF4214/dsa.h /usr/cross/pmonmips/usr/include/ssl)
sed 's/<openssl/<ssl/' /home/andy/src/dev/openbsd/src/lib/libssl/crypto/../src/include/openssl/mdc2.h >/tmp/libsslWgzuKF4214/mdc2.h && (cmp -s /tmp/libsslWgzuKF4214/mdc2.h /usr/cross/pmonmips/usr/include/ssl/mdc2.h || install -c -o 0 -g 7 -m 444 /tmp/libsslWgzuKF4214/mdc2.h /usr/cross/pmonmips/usr/include/ssl)
sed 's/<openssl/<ssl/' /home/andy/src/dev/openbsd/src/lib/libssl/crypto/../src/include/openssl/rc5.h >/tmp/libsslWgzuKF4214/rc5.h && (cmp -s /tmp/libsslWgzuKF4214/rc5.h /usr/cross/pmonmips/usr/include/ssl/rc5.h || install -c -o 0 -g 7 -m 444 /tmp/libsslWgzuKF4214/rc5.h /usr/cross/pmonmips/usr/include/ssl)
sed 's/<openssl/<ssl/' /home/andy/src/dev/openbsd/src/lib/libssl/crypto/../src/include/openssl/tls1.h >/tmp/libsslWgzuKF4214/tls1.h && (cmp -s /tmp/libsslWgzuKF4214/tls1.h /usr/cross/pmonmips/usr/include/ssl/tls1.h || install -c -o 0 -g 7 -m 444 /tmp/libsslWgzuKF4214/tls1.h /usr/cross/pmonmips/usr/include/ssl)
sed 's/<openssl/<ssl/' /home/andy/src/dev/openbsd/src/lib/libssl/crypto/../src/include/openssl/bio.h >/tmp/libsslWgzuKF4214/bio.h && (cmp -s /tmp/libsslWgzuKF4214/bio.h /usr/cross/pmonmips/usr/include/ssl/bio.h || install -c -o 0 -g 7 -m 444 /tmp/libsslWgzuKF4214/bio.h /usr/cross/pmonmips/usr/include/ssl)
sed 's/<openssl/<ssl/' /home/andy/src/dev/openbsd/src/lib/libssl/crypto/../src/include/openssl/e_os.h >/tmp/libsslWgzuKF4214/e_os.h && (cmp -s /tmp/libsslWgzuKF4214/e_os.h /usr/cross/pmonmips/usr/include/ssl/e_os.h || install -c -o 0 -g 7 -m 444 /tmp/libsslWgzuKF4214/e_os.h /usr/cross/pmonmips/usr/include/ssl)
sed 's/<openssl/<ssl/' /home/andy/src/dev/openbsd/src/lib/libssl/crypto/../src/include/openssl/objects.h >/tmp/libsslWgzuKF4214/objects.h && (cmp -s /tmp/libsslWgzuKF4214/objects.h /usr/cross/pmonmips/usr/include/ssl/objects.h || install -c -o 0 -g 7 -m 444 /tmp/libsslWgzuKF4214/objects.h /usr/cross/pmonmips/usr/include/ssl)
sed 's/<openssl/<ssl/' /home/andy/src/dev/openbsd/src/lib/libssl/crypto/../src/include/openssl/ripemd.h >/tmp/libsslWgzuKF4214/ripemd.h && (cmp -s /tmp/libsslWgzuKF4214/ripemd.h /usr/cross/pmonmips/usr/include/ssl/ripemd.h || install -c -o 0 -g 7 -m 444 /tmp/libsslWgzuKF4214/ripemd.h /usr/cross/pmonmips/usr/include/ssl)
sed 's/<openssl/<ssl/' /home/andy/src/dev/openbsd/src/lib/libssl/crypto/../src/include/openssl/tmdiff.h >/tmp/libsslWgzuKF4214/tmdiff.h && (cmp -s /tmp/libsslWgzuKF4214/tmdiff.h /usr/cross/pmonmips/usr/include/ssl/tmdiff.h || install -c -o 0 -g 7 -m 444 /tmp/libsslWgzuKF4214/tmdiff.h /usr/cross/pmonmips/usr/include/ssl)
sed 's/<openssl/<ssl/' /home/andy/src/dev/openbsd/src/lib/libssl/crypto/../src/include/openssl/blowfish.h >/tmp/libsslWgzuKF4214/blowfish.h && (cmp -s /tmp/libsslWgzuKF4214/blowfish.h /usr/cross/pmonmips/usr/include/ssl/blowfish.h || install -c -o 0 -g 7 -m 444 /tmp/libsslWgzuKF4214/blowfish.h /usr/cross/pmonmips/usr/include/ssl)
sed 's/<openssl/<ssl/' /home/andy/src/dev/openbsd/src/lib/libssl/crypto/../src/include/openssl/e_os2.h >/tmp/libsslWgzuKF4214/e_os2.h && (cmp -s /tmp/libsslWgzuKF4214/e_os2.h /usr/cross/pmonmips/usr/include/ssl/e_os2.h || install -c -o 0 -g 7 -m 444 /tmp/libsslWgzuKF4214/e_os2.h /usr/cross/pmonmips/usr/include/ssl)
sed 's/<openssl/<ssl/' /home/andy/src/dev/openbsd/src/lib/libssl/crypto/../src/include/openssl/opensslconf.h >/tmp/libsslWgzuKF4214/opensslconf.h && (cmp -s /tmp/libsslWgzuKF4214/opensslconf.h /usr/cross/pmonmips/usr/include/ssl/opensslconf.h || install -c -o 0 -g 7 -m 444 /tmp/libsslWgzuKF4214/opensslconf.h /usr/cross/pmonmips/usr/include/ssl)
sed 's/<openssl/<ssl/' /home/andy/src/dev/openbsd/src/lib/libssl/crypto/../src/include/openssl/rsa.h >/tmp/libsslWgzuKF4214/rsa.h && (cmp -s /tmp/libsslWgzuKF4214/rsa.h /usr/cross/pmonmips/usr/include/ssl/rsa.h || install -c -o 0 -g 7 -m 444 /tmp/libsslWgzuKF4214/rsa.h /usr/cross/pmonmips/usr/include/ssl)
sed 's/<openssl/<ssl/' /home/andy/src/dev/openbsd/src/lib/libssl/crypto/../src/include/openssl/txt_db.h >/tmp/libsslWgzuKF4214/txt_db.h && (cmp -s /tmp/libsslWgzuKF4214/txt_db.h /usr/cross/pmonmips/usr/include/ssl/txt_db.h || install -c -o 0 -g 7 -m 444 /tmp/libsslWgzuKF4214/txt_db.h /usr/cross/pmonmips/usr/include/ssl)
sed 's/<openssl/<ssl/' /home/andy/src/dev/openbsd/src/lib/libssl/crypto/../src/include/openssl/bn.h >/tmp/libsslWgzuKF4214/bn.h && (cmp -s /tmp/libsslWgzuKF4214/bn.h /usr/cross/pmonmips/usr/include/ssl/bn.h || install -c -o 0 -g 7 -m 444 /tmp/libsslWgzuKF4214/bn.h /usr/cross/pmonmips/usr/include/ssl)
sed 's/<openssl/<ssl/' /home/andy/src/dev/openbsd/src/lib/libssl/crypto/../src/include/openssl/ebcdic.h >/tmp/libsslWgzuKF4214/ebcdic.h && (cmp -s /tmp/libsslWgzuKF4214/ebcdic.h /usr/cross/pmonmips/usr/include/ssl/ebcdic.h || install -c -o 0 -g 7 -m 444 /tmp/libsslWgzuKF4214/ebcdic.h /usr/cross/pmonmips/usr/include/ssl)
sed 's/<openssl/<ssl/' /home/andy/src/dev/openbsd/src/lib/libssl/crypto/../src/include/openssl/opensslv.h >/tmp/libsslWgzuKF4214/opensslv.h && (cmp -s /tmp/libsslWgzuKF4214/opensslv.h /usr/cross/pmonmips/usr/include/ssl/opensslv.h || install -c -o 0 -g 7 -m 444 /tmp/libsslWgzuKF4214/opensslv.h /usr/cross/pmonmips/usr/include/ssl)
sed 's/<openssl/<ssl/' /home/andy/src/dev/openbsd/src/lib/libssl/crypto/../src/include/openssl/rsaref.h >/tmp/libsslWgzuKF4214/rsaref.h && (cmp -s /tmp/libsslWgzuKF4214/rsaref.h /usr/cross/pmonmips/usr/include/ssl/rsaref.h || install -c -o 0 -g 7 -m 444 /tmp/libsslWgzuKF4214/rsaref.h /usr/cross/pmonmips/usr/include/ssl)
sed 's/<openssl/<ssl/' /home/andy/src/dev/openbsd/src/lib/libssl/crypto/../src/include/openssl/x509.h >/tmp/libsslWgzuKF4214/x509.h && (cmp -s /tmp/libsslWgzuKF4214/x509.h /usr/cross/pmonmips/usr/include/ssl/x509.h || install -c -o 0 -g 7 -m 444 /tmp/libsslWgzuKF4214/x509.h /usr/cross/pmonmips/usr/include/ssl)
sed 's/<openssl/<ssl/' /home/andy/src/dev/openbsd/src/lib/libssl/crypto/../src/include/openssl/buffer.h >/tmp/libsslWgzuKF4214/buffer.h && (cmp -s /tmp/libsslWgzuKF4214/buffer.h /usr/cross/pmonmips/usr/include/ssl/buffer.h || install -c -o 0 -g 7 -m 444 /tmp/libsslWgzuKF4214/buffer.h /usr/cross/pmonmips/usr/include/ssl)
sed 's/<openssl/<ssl/' /home/andy/src/dev/openbsd/src/lib/libssl/crypto/../src/include/openssl/err.h >/tmp/libsslWgzuKF4214/err.h && (cmp -s /tmp/libsslWgzuKF4214/err.h /usr/cross/pmonmips/usr/include/ssl/err.h || install -c -o 0 -g 7 -m 444 /tmp/libsslWgzuKF4214/err.h /usr/cross/pmonmips/usr/include/ssl)
sed 's/<openssl/<ssl/' /home/andy/src/dev/openbsd/src/lib/libssl/crypto/../src/include/openssl/pem.h >/tmp/libsslWgzuKF4214/pem.h && (cmp -s /tmp/libsslWgzuKF4214/pem.h /usr/cross/pmonmips/usr/include/ssl/pem.h || install -c -o 0 -g 7 -m 444 /tmp/libsslWgzuKF4214/pem.h /usr/cross/pmonmips/usr/include/ssl)
sed 's/<openssl/<ssl/' /home/andy/src/dev/openbsd/src/lib/libssl/crypto/../src/include/openssl/safestack.h >/tmp/libsslWgzuKF4214/safestack.h && (cmp -s /tmp/libsslWgzuKF4214/safestack.h /usr/cross/pmonmips/usr/include/ssl/safestack.h || install -c -o 0 -g 7 -m 444 /tmp/libsslWgzuKF4214/safestack.h /usr/cross/pmonmips/usr/include/ssl)
sed 's/<openssl/<ssl/' /home/andy/src/dev/openbsd/src/lib/libssl/crypto/../src/include/openssl/x509_vfy.h >/tmp/libsslWgzuKF4214/x509_vfy.h && (cmp -s /tmp/libsslWgzuKF4214/x509_vfy.h /usr/cross/pmonmips/usr/include/ssl/x509_vfy.h || install -c -o 0 -g 7 -m 444 /tmp/libsslWgzuKF4214/x509_vfy.h /usr/cross/pmonmips/usr/include/ssl)
sed 's/<openssl/<ssl/' /home/andy/src/dev/openbsd/src/lib/libssl/crypto/../src/include/openssl/cast.h >/tmp/libsslWgzuKF4214/cast.h && (cmp -s /tmp/libsslWgzuKF4214/cast.h /usr/cross/pmonmips/usr/include/ssl/cast.h || install -c -o 0 -g 7 -m 444 /tmp/libsslWgzuKF4214/cast.h /usr/cross/pmonmips/usr/include/ssl)
sed 's/<openssl/<ssl/' /home/andy/src/dev/openbsd/src/lib/libssl/crypto/../src/include/openssl/evp.h >/tmp/libsslWgzuKF4214/evp.h && (cmp -s /tmp/libsslWgzuKF4214/evp.h /usr/cross/pmonmips/usr/include/ssl/evp.h || install -c -o 0 -g 7 -m 444 /tmp/libsslWgzuKF4214/evp.h /usr/cross/pmonmips/usr/include/ssl)
sed 's/<openssl/<ssl/' /home/andy/src/dev/openbsd/src/lib/libssl/crypto/../src/include/openssl/pem2.h >/tmp/libsslWgzuKF4214/pem2.h && (cmp -s /tmp/libsslWgzuKF4214/pem2.h /usr/cross/pmonmips/usr/include/ssl/pem2.h || install -c -o 0 -g 7 -m 444 /tmp/libsslWgzuKF4214/pem2.h /usr/cross/pmonmips/usr/include/ssl)
sed 's/<openssl/<ssl/' /home/andy/src/dev/openbsd/src/lib/libssl/crypto/../src/include/openssl/sha.h >/tmp/libsslWgzuKF4214/sha.h && (cmp -s /tmp/libsslWgzuKF4214/sha.h /usr/cross/pmonmips/usr/include/ssl/sha.h || install -c -o 0 -g 7 -m 444 /tmp/libsslWgzuKF4214/sha.h /usr/cross/pmonmips/usr/include/ssl)
sed 's/<openssl/<ssl/' /home/andy/src/dev/openbsd/src/lib/libssl/crypto/../src/include/openssl/x509v3.h >/tmp/libsslWgzuKF4214/x509v3.h && (cmp -s /tmp/libsslWgzuKF4214/x509v3.h /usr/cross/pmonmips/usr/include/ssl/x509v3.h || install -c -o 0 -g 7 -m 444 /tmp/libsslWgzuKF4214/x509v3.h /usr/cross/pmonmips/usr/include/ssl)
sed 's/<openssl/<ssl/' /home/andy/src/dev/openbsd/src/lib/libssl/crypto/../src/include/openssl/comp.h >/tmp/libsslWgzuKF4214/comp.h && (cmp -s /tmp/libsslWgzuKF4214/comp.h /usr/cross/pmonmips/usr/include/ssl/comp.h || install -c -o 0 -g 7 -m 444 /tmp/libsslWgzuKF4214/comp.h /usr/cross/pmonmips/usr/include/ssl)
sed 's/<openssl/<ssl/' /home/andy/src/dev/openbsd/src/lib/libssl/crypto/../src/include/openssl/hmac.h >/tmp/libsslWgzuKF4214/hmac.h && (cmp -s /tmp/libsslWgzuKF4214/hmac.h /usr/cross/pmonmips/usr/include/ssl/hmac.h || install -c -o 0 -g 7 -m 444 /tmp/libsslWgzuKF4214/hmac.h /usr/cross/pmonmips/usr/include/ssl)
sed 's/<openssl/<ssl/' /home/andy/src/dev/openbsd/src/lib/libssl/crypto/../src/include/openssl/pkcs12.h >/tmp/libsslWgzuKF4214/pkcs12.h && (cmp -s /tmp/libsslWgzuKF4214/pkcs12.h /usr/cross/pmonmips/usr/include/ssl/pkcs12.h || install -c -o 0 -g 7 -m 444 /tmp/libsslWgzuKF4214/pkcs12.h /usr/cross/pmonmips/usr/include/ssl)
sed 's/<openssl/<ssl/' /home/andy/src/dev/openbsd/src/lib/libssl/crypto/../src/include/openssl/ssl.h >/tmp/libsslWgzuKF4214/ssl.h && (cmp -s /tmp/libsslWgzuKF4214/ssl.h /usr/cross/pmonmips/usr/include/ssl/ssl.h || install -c -o 0 -g 7 -m 444 /tmp/libsslWgzuKF4214/ssl.h /usr/cross/pmonmips/usr/include/ssl)
sed 's/<openssl/<ssl/' /home/andy/src/dev/openbsd/src/lib/libssl/crypto/../src/include/openssl/conf.h >/tmp/libsslWgzuKF4214/conf.h && (cmp -s /tmp/libsslWgzuKF4214/conf.h /usr/cross/pmonmips/usr/include/ssl/conf.h || install -c -o 0 -g 7 -m 444 /tmp/libsslWgzuKF4214/conf.h /usr/cross/pmonmips/usr/include/ssl)
sed 's/<openssl/<ssl/' /home/andy/src/dev/openbsd/src/lib/libssl/crypto/../src/include/openssl/idea.h >/tmp/libsslWgzuKF4214/idea.h && (cmp -s /tmp/libsslWgzuKF4214/idea.h /usr/cross/pmonmips/usr/include/ssl/idea.h || install -c -o 0 -g 7 -m 444 /tmp/libsslWgzuKF4214/idea.h /usr/cross/pmonmips/usr/include/ssl)
sed 's/<openssl/<ssl/' /home/andy/src/dev/openbsd/src/lib/libssl/crypto/../src/include/openssl/pkcs7.h >/tmp/libsslWgzuKF4214/pkcs7.h && (cmp -s /tmp/libsslWgzuKF4214/pkcs7.h /usr/cross/pmonmips/usr/include/ssl/pkcs7.h || install -c -o 0 -g 7 -m 444 /tmp/libsslWgzuKF4214/pkcs7.h /usr/cross/pmonmips/usr/include/ssl)
sed 's/<openssl/<ssl/' /home/andy/src/dev/openbsd/src/lib/libssl/crypto/../src/include/openssl/ssl2.h >/tmp/libsslWgzuKF4214/ssl2.h && (cmp -s /tmp/libsslWgzuKF4214/ssl2.h /usr/cross/pmonmips/usr/include/ssl/ssl2.h || install -c -o 0 -g 7 -m 444 /tmp/libsslWgzuKF4214/ssl2.h /usr/cross/pmonmips/usr/include/ssl)
sed 's/<openssl/<ssl/' /home/andy/src/dev/openbsd/src/lib/libssl/crypto/../src/include/openssl/crypto.h >/tmp/libsslWgzuKF4214/crypto.h && (cmp -s /tmp/libsslWgzuKF4214/crypto.h /usr/cross/pmonmips/usr/include/ssl/crypto.h || install -c -o 0 -g 7 -m 444 /tmp/libsslWgzuKF4214/crypto.h /usr/cross/pmonmips/usr/include/ssl)
sed 's/<openssl/<ssl/' /home/andy/src/dev/openbsd/src/lib/libssl/crypto/../src/include/openssl/lhash.h >/tmp/libsslWgzuKF4214/lhash.h && (cmp -s /tmp/libsslWgzuKF4214/lhash.h /usr/cross/pmonmips/usr/include/ssl/lhash.h || install -c -o 0 -g 7 -m 444 /tmp/libsslWgzuKF4214/lhash.h /usr/cross/pmonmips/usr/include/ssl)
sed 's/<openssl/<ssl/' /home/andy/src/dev/openbsd/src/lib/libssl/crypto/../src/include/openssl/rand.h >/tmp/libsslWgzuKF4214/rand.h && (cmp -s /tmp/libsslWgzuKF4214/rand.h /usr/cross/pmonmips/usr/include/ssl/rand.h || install -c -o 0 -g 7 -m 444 /tmp/libsslWgzuKF4214/rand.h /usr/cross/pmonmips/usr/include/ssl)
sed 's/<openssl/<ssl/' /home/andy/src/dev/openbsd/src/lib/libssl/crypto/../src/include/openssl/ssl23.h >/tmp/libsslWgzuKF4214/ssl23.h && (cmp -s /tmp/libsslWgzuKF4214/ssl23.h /usr/cross/pmonmips/usr/include/ssl/ssl23.h || install -c -o 0 -g 7 -m 444 /tmp/libsslWgzuKF4214/ssl23.h /usr/cross/pmonmips/usr/include/ssl)
sed 's/<openssl/<ssl/' /home/andy/src/dev/openbsd/src/lib/libssl/crypto/../src/include/openssl/des.h >/tmp/libsslWgzuKF4214/des.h && (cmp -s /tmp/libsslWgzuKF4214/des.h /usr/cross/pmonmips/usr/include/ssl/des.h || install -c -o 0 -g 7 -m 444 /tmp/libsslWgzuKF4214/des.h /usr/cross/pmonmips/usr/include/ssl)
sed 's/<openssl/<ssl/' /home/andy/src/dev/openbsd/src/lib/libssl/crypto/../src/include/openssl/md2.h >/tmp/libsslWgzuKF4214/md2.h && (cmp -s /tmp/libsslWgzuKF4214/md2.h /usr/cross/pmonmips/usr/include/ssl/md2.h || install -c -o 0 -g 7 -m 444 /tmp/libsslWgzuKF4214/md2.h /usr/cross/pmonmips/usr/include/ssl)
sed 's/<openssl/<ssl/' /home/andy/src/dev/openbsd/src/lib/libssl/crypto/../src/include/openssl/rc2.h >/tmp/libsslWgzuKF4214/rc2.h && (cmp -s /tmp/libsslWgzuKF4214/rc2.h /usr/cross/pmonmips/usr/include/ssl/rc2.h || install -c -o 0 -g 7 -m 444 /tmp/libsslWgzuKF4214/rc2.h /usr/cross/pmonmips/usr/include/ssl)
sed 's/<openssl/<ssl/' /home/andy/src/dev/openbsd/src/lib/libssl/crypto/../src/include/openssl/ssl3.h >/tmp/libsslWgzuKF4214/ssl3.h && (cmp -s /tmp/libsslWgzuKF4214/ssl3.h /usr/cross/pmonmips/usr/include/ssl/ssl3.h || install -c -o 0 -g 7 -m 444 /tmp/libsslWgzuKF4214/ssl3.h /usr/cross/pmonmips/usr/include/ssl)
===> ssl
sed 's/<openssl/<ssl/' ssl.h >/tmp/libsslMGALBQ4478/ssl.h && (cmp -s /tmp/libsslMGALBQ4478/ssl.h /usr/cross/pmonmips/usr/include/ssl/ssl.h || install -c -o 0 -g 7 -m 444 /tmp/libsslMGALBQ4478/ssl.h /usr/cross/pmonmips/usr/include/ssl)
sed 's/<openssl/<ssl/' ssl2.h >/tmp/libsslMGALBQ4478/ssl2.h && (cmp -s /tmp/libsslMGALBQ4478/ssl2.h /usr/cross/pmonmips/usr/include/ssl/ssl2.h || install -c -o 0 -g 7 -m 444 /tmp/libsslMGALBQ4478/ssl2.h /usr/cross/pmonmips/usr/include/ssl)
sed 's/<openssl/<ssl/' ssl3.h >/tmp/libsslMGALBQ4478/ssl3.h && (cmp -s /tmp/libsslMGALBQ4478/ssl3.h /usr/cross/pmonmips/usr/include/ssl/ssl3.h || install -c -o 0 -g 7 -m 444 /tmp/libsslMGALBQ4478/ssl3.h /usr/cross/pmonmips/usr/include/ssl)
sed 's/<openssl/<ssl/' ssl23.h >/tmp/libsslMGALBQ4478/ssl23.h && (cmp -s /tmp/libsslMGALBQ4478/ssl23.h /usr/cross/pmonmips/usr/include/ssl/ssl23.h || install -c -o 0 -g 7 -m 444 /tmp/libsslMGALBQ4478/ssl23.h /usr/cross/pmonmips/usr/include/ssl)
sed 's/<openssl/<ssl/' ssl_locl.h >/tmp/libsslMGALBQ4478/ssl_locl.h && (cmp -s /tmp/libsslMGALBQ4478/ssl_locl.h /usr/cross/pmonmips/usr/include/ssl/ssl_locl.h || install -c -o 0 -g 7 -m 444 /tmp/libsslMGALBQ4478/ssl_locl.h /usr/cross/pmonmips/usr/include/ssl)
sed 's/<openssl/<ssl/' tls1.h >/tmp/libsslMGALBQ4478/tls1.h && (cmp -s /tmp/libsslMGALBQ4478/tls1.h /usr/cross/pmonmips/usr/include/ssl/tls1.h || install -c -o 0 -g 7 -m 444 /tmp/libsslMGALBQ4478/tls1.h /usr/cross/pmonmips/usr/include/ssl)
installing in /home/andy/src/dev/openbsd/src/include/../gnu/lib/libgmp
installing in /home/andy/src/dev/openbsd/src/include/../usr.sbin/httpd
Installing /usr/cross/pmonmips/usr/lib/apache/include/alloc.h
Installing /usr/cross/pmonmips/usr/lib/apache/include/ap.h
Installing /usr/cross/pmonmips/usr/lib/apache/include/ap_compat.h
Installing /usr/cross/pmonmips/usr/lib/apache/include/ap_config.h
Installing /usr/cross/pmonmips/usr/lib/apache/include/ap_config_auto.h
Installing /usr/cross/pmonmips/usr/lib/apache/include/ap_ctx.h
Installing /usr/cross/pmonmips/usr/lib/apache/include/ap_ctype.h
Installing /usr/cross/pmonmips/usr/lib/apache/include/ap_hook.h
Installing /usr/cross/pmonmips/usr/lib/apache/include/ap_md5.h
Installing /usr/cross/pmonmips/usr/lib/apache/include/ap_mm.h
Installing /usr/cross/pmonmips/usr/lib/apache/include/ap_mmn.h
Installing /usr/cross/pmonmips/usr/lib/apache/include/ap_sha1.h
Installing /usr/cross/pmonmips/usr/lib/apache/include/buff.h
Installing /usr/cross/pmonmips/usr/lib/apache/include/compat.h
Installing /usr/cross/pmonmips/usr/lib/apache/include/conf.h
Installing /usr/cross/pmonmips/usr/lib/apache/include/explain.h
Installing /usr/cross/pmonmips/usr/lib/apache/include/fnmatch.h
Installing /usr/cross/pmonmips/usr/lib/apache/include/hsregex.h
Installing /usr/cross/pmonmips/usr/lib/apache/include/http_conf_globals.h
Installing /usr/cross/pmonmips/usr/lib/apache/include/http_config.h
Installing /usr/cross/pmonmips/usr/lib/apache/include/http_core.h
Installing /usr/cross/pmonmips/usr/lib/apache/include/http_log.h
Installing /usr/cross/pmonmips/usr/lib/apache/include/http_main.h
Installing /usr/cross/pmonmips/usr/lib/apache/include/http_protocol.h
Installing /usr/cross/pmonmips/usr/lib/apache/include/http_request.h
Installing /usr/cross/pmonmips/usr/lib/apache/include/http_vhost.h
Installing /usr/cross/pmonmips/usr/lib/apache/include/httpd.h
Installing /usr/cross/pmonmips/usr/lib/apache/include/multithread.h
Installing /usr/cross/pmonmips/usr/lib/apache/include/rfc1413.h
Installing /usr/cross/pmonmips/usr/lib/apache/include/scoreboard.h
Installing /usr/cross/pmonmips/usr/lib/apache/include/util_date.h
Installing /usr/cross/pmonmips/usr/lib/apache/include/util_md5.h
Installing /usr/cross/pmonmips/usr/lib/apache/include/util_script.h
Installing /usr/cross/pmonmips/usr/lib/apache/include/os-inline.c
Installing /usr/cross/pmonmips/usr/lib/apache/include/os.h
Installing /usr/cross/pmonmips/usr/lib/apache/include/util_uri.h
Installing /usr/cross/pmonmips/usr/lib/apache/include/xml/asciitab.h
Installing /usr/cross/pmonmips/usr/lib/apache/include/xml/hashtable.h
Installing /usr/cross/pmonmips/usr/lib/apache/include/xml/iasciitab.h
Installing /usr/cross/pmonmips/usr/lib/apache/include/xml/latin1tab.h
Installing /usr/cross/pmonmips/usr/lib/apache/include/xml/nametab.h
Installing /usr/cross/pmonmips/usr/lib/apache/include/xml/utf8tab.h
Installing /usr/cross/pmonmips/usr/lib/apache/include/xml/xmldef.h
Installing /usr/cross/pmonmips/usr/lib/apache/include/xml/xmlparse.h
Installing /usr/cross/pmonmips/usr/lib/apache/include/xml/xmlrole.h
Installing /usr/cross/pmonmips/usr/lib/apache/include/xml/xmltok.h
Installing /usr/cross/pmonmips/usr/lib/apache/include/xml/xmltok_impl.h
installing in /home/andy/src/dev/openbsd/src/include/../lib/readline-4.1
install -d -o 0 -g 7 /usr/cross/pmonmips/usr/include/readline
install -o 0 -g 7 chardefs.h /usr/cross/pmonmips/usr/include/readline/chardefs.h
install -o 0 -g 7 history.h /usr/cross/pmonmips/usr/include/readline/history.h
install -o 0 -g 7 keymaps.h /usr/cross/pmonmips/usr/include/readline/keymaps.h
install -o 0 -g 7 readline.h /usr/cross/pmonmips/usr/include/readline/readline.h
install -o 0 -g 7 rlconf.h /usr/cross/pmonmips/usr/include/readline/rlconf.h
install -o 0 -g 7 rlstdc.h /usr/cross/pmonmips/usr/include/readline/rlstdc.h
install -o 0 -g 7 tilde.h /usr/cross/pmonmips/usr/include/readline/tilde.h
installing in /home/andy/src/dev/openbsd/src/include/../gnu/egcs/libio
installing in /home/andy/src/dev/openbsd/src/include/../gnu/egcs/libstdc++
installing in /home/andy/src/dev/openbsd/src/include/../gnu/egcs/libf2c
install -o 0 -g 7 -m 444  /home/andy/src/dev/openbsd/src/gnu/egcs/libf2c/f2c.h /usr/cross/pmonmips/usr/include
install -o 0 -g 7 -m 444  g2c.h /usr/cross/pmonmips/usr/include
installing in /home/andy/src/dev/openbsd/src/include/../gnu/egcs/libobjc
install -d -m 755 -o 0 -g 7  /usr/cross/pmonmips/usr/include/objc
installing in /home/andy/src/dev/openbsd/src/include/../gnu/egcs/gcc
export BOOT_TOOLS=${PWD}/boot-tools;\
	export FILESDIR=${BOOT_TOOLS}/usr/share/mk;\
	export BSDMAKE="${BOOT_TOOLS}/usr/bin/bsdmake -m ${FILESDIR}";\
	export DESTDIR=${PWD}/openbsd.new;\
	export SRCDIR=${PWD}/openbsd.new;\
	export SUDO=sudo;\
	export MAKEFLAGS=;\
	cd openbsd.new/src && sudo ${BSDMAKE} cross-binutils TARGET=pmonmips
Creating CROSSDIR directories in cross-dirs target
export BSDSRCDIR=`pwd`;  (cd /home/andy/src/dev/openbsd/src/gnu/usr.bin/binutils;  BSDOBJDIR=/usr/cross/pmonmips/usr/obj  MAKEOBJDIR=obj.unknown.pmonmips  /home/andy/src/dev/boot-tools/usr/bin/bsdmake -f Makefile.bsd-wrapper obj);  (cd /home/andy/src/dev/openbsd/src/gnu/usr.bin/binutils;  /bin/sh /home/andy/src/dev/openbsd/src/gnu/usr.bin/binutils/configure  --prefix /usr/cross/pmonmips/usr  --target `cat /usr/cross/pmonmips/TARGET_CANON` &&  gmake LDFLAGS=-ldl && gmake LDFLAGS=-ldl DESTDIR=/usr/cross/pmonmips install)
/home/andy/src/dev/openbsd/src/gnu/usr.bin/binutils/obj.unknown.pmonmips -> /usr/cross/pmonmips/usr/obj/gnu/usr.bin/binutils
Configuring for a i686-pc-linux-gnu host.
Created "Makefile" in /home/andy/src/dev/openbsd/src/gnu/usr.bin/binutils using "config/mh-linux"
./config.status is unchanged
configure: warning: Can't find Tcl configuration definitions
gmake[1]: Entering directory `/home/andy/src/dev/openbsd/src/gnu/usr.bin/binutils/bfd'
rm -f bfd-tmp.h
cp bfd-in3.h bfd-tmp.h
/bin/sh ./../move-if-change bfd-tmp.h bfd.h
bfd.h is unchanged
rm -f bfd-tmp.h
touch stmp-bfd.h
if [ -n "" ]; then \
	  gcc -O2 -c  -DNETBSD_CORE   -I. -I. -I./../include  -g archive.c -o pic/archive.o; \
	else true; fi
gcc -O2 -c -DNETBSD_CORE   -I. -I. -I./../include  -g archive.c
if [ -n "" ]; then \
	  gcc -O2 -c  -DDEFAULT_VECTOR=bfd_elf32_littlemips_vec -DSELECT_VECS='&bfd_elf32_littlemips_vec,&bfd_elf32_bigmips_vec' -DSELECT_ARCHITECTURES='&bfd_mips_arch' -DHAVE_bfd_elf32_littlemips_vec -DHAVE_bfd_elf32_bigmips_vec -DNETBSD_CORE   -I. -I. -I./../include  -g ./archures.c -o pic/archures.o; \
	else true; fi
gcc -O2 -c -DDEFAULT_VECTOR=bfd_elf32_littlemips_vec -DSELECT_VECS='&bfd_elf32_littlemips_vec,&bfd_elf32_bigmips_vec' -DSELECT_ARCHITECTURES='&bfd_mips_arch' -DHAVE_bfd_elf32_littlemips_vec -DHAVE_bfd_elf32_bigmips_vec -DNETBSD_CORE   -I. -I. -I./../include  -g ./archures.c
if [ -n "" ]; then \
	  gcc -O2 -c  -DNETBSD_CORE   -I. -I. -I./../include  -g bfd.c -o pic/bfd.o; \
	else true; fi
gcc -O2 -c -DNETBSD_CORE   -I. -I. -I./../include  -g bfd.c
if [ -n "" ]; then \
	  gcc -O2 -c  -DNETBSD_CORE   -I. -I. -I./../include  -g cache.c -o pic/cache.o; \
	else true; fi
gcc -O2 -c -DNETBSD_CORE   -I. -I. -I./../include  -g cache.c
if [ -n "" ]; then \
	  gcc -O2 -c  -DNETBSD_CORE   -I. -I. -I./../include  -g coffgen.c -o pic/coffgen.o; \
	else true; fi
gcc -O2 -c -DNETBSD_CORE   -I. -I. -I./../include  -g coffgen.c
if [ -n "" ]; then \
	  gcc -O2 -c  -DNETBSD_CORE   -I. -I. -I./../include  -g corefile.c -o pic/corefile.o; \
	else true; fi
gcc -O2 -c -DNETBSD_CORE   -I. -I. -I./../include  -g corefile.c
if [ -n "" ]; then \
	  gcc -O2 -c  -DNETBSD_CORE   -I. -I. -I./../include  -g format.c -o pic/format.o; \
	else true; fi
gcc -O2 -c -DNETBSD_CORE   -I. -I. -I./../include  -g format.c
if [ -n "" ]; then \
	  gcc -O2 -c  -DNETBSD_CORE   -I. -I. -I./../include  -g init.c -o pic/init.o; \
	else true; fi
gcc -O2 -c -DNETBSD_CORE   -I. -I. -I./../include  -g init.c
if [ -n "" ]; then \
	  gcc -O2 -c  -DNETBSD_CORE   -I. -I. -I./../include  -g libbfd.c -o pic/libbfd.o; \
	else true; fi
gcc -O2 -c -DNETBSD_CORE   -I. -I. -I./../include  -g libbfd.c
if [ -n "" ]; then \
	  gcc -O2 -c  -DNETBSD_CORE   -I. -I. -I./../include  -g opncls.c -o pic/opncls.o; \
	else true; fi
gcc -O2 -c -DNETBSD_CORE   -I. -I. -I./../include  -g opncls.c
if [ -n "" ]; then \
	  gcc -O2 -c  -DNETBSD_CORE   -I. -I. -I./../include  -g reloc.c -o pic/reloc.o; \
	else true; fi
gcc -O2 -c -DNETBSD_CORE   -I. -I. -I./../include  -g reloc.c
if [ -n "" ]; then \
	  gcc -O2 -c  -DNETBSD_CORE   -I. -I. -I./../include  -g section.c -o pic/section.o; \
	else true; fi
gcc -O2 -c -DNETBSD_CORE   -I. -I. -I./../include  -g section.c
if [ -n "" ]; then \
	  gcc -O2 -c  -DNETBSD_CORE   -I. -I. -I./../include  -g syms.c -o pic/syms.o; \
	else true; fi
gcc -O2 -c -DNETBSD_CORE   -I. -I. -I./../include  -g syms.c
if [ -n "" ]; then \
	  gcc -O2 -c  -DDEFAULT_VECTOR=bfd_elf32_littlemips_vec -DSELECT_VECS='&bfd_elf32_littlemips_vec,&bfd_elf32_bigmips_vec' -DSELECT_ARCHITECTURES='&bfd_mips_arch' -DHAVE_bfd_elf32_littlemips_vec -DHAVE_bfd_elf32_bigmips_vec -DNETBSD_CORE   -I. -I. -I./../include  -g ./targets.c -o pic/targets.o; \
	else true; fi
gcc -O2 -c -DDEFAULT_VECTOR=bfd_elf32_littlemips_vec -DSELECT_VECS='&bfd_elf32_littlemips_vec,&bfd_elf32_bigmips_vec' -DSELECT_ARCHITECTURES='&bfd_mips_arch' -DHAVE_bfd_elf32_littlemips_vec -DHAVE_bfd_elf32_bigmips_vec -DNETBSD_CORE   -I. -I. -I./../include  -g ./targets.c
if [ -n "" ]; then \
	  gcc -O2 -c  -DNETBSD_CORE   -I. -I. -I./../include  -g hash.c -o pic/hash.o; \
	else true; fi
gcc -O2 -c -DNETBSD_CORE   -I. -I. -I./../include  -g hash.c
if [ -n "" ]; then \
	  gcc -O2 -c  -DNETBSD_CORE   -I. -I. -I./../include  -g linker.c -o pic/linker.o; \
	else true; fi
gcc -O2 -c -DNETBSD_CORE   -I. -I. -I./../include  -g linker.c
if [ -n "" ]; then \
	  gcc -O2 -c  -DNETBSD_CORE   -I. -I. -I./../include  -g elf.c -o pic/elf.o; \
	else true; fi
gcc -O2 -c -DNETBSD_CORE   -I. -I. -I./../include  -g elf.c
if [ -n "" ]; then \
	  gcc -O2 -c  -DNETBSD_CORE   -I. -I. -I./../include  -g srec.c -o pic/srec.o; \
	else true; fi
gcc -O2 -c -DNETBSD_CORE   -I. -I. -I./../include  -g srec.c
if [ -n "" ]; then \
	  gcc -O2 -c  -DNETBSD_CORE   -I. -I. -I./../include  -g binary.c -o pic/binary.o; \
	else true; fi
gcc -O2 -c -DNETBSD_CORE   -I. -I. -I./../include  -g binary.c
if [ -n "" ]; then \
	  gcc -O2 -c  -DNETBSD_CORE   -I. -I. -I./../include  -g tekhex.c -o pic/tekhex.o; \
	else true; fi
gcc -O2 -c -DNETBSD_CORE   -I. -I. -I./../include  -g tekhex.c
if [ -n "" ]; then \
	  gcc -O2 -c  -DNETBSD_CORE   -I. -I. -I./../include  -g ihex.c -o pic/ihex.o; \
	else true; fi
gcc -O2 -c -DNETBSD_CORE   -I. -I. -I./../include  -g ihex.c
if [ -n "" ]; then \
	  gcc -O2 -c  -DNETBSD_CORE   -I. -I. -I./../include  -g stabs.c -o pic/stabs.o; \
	else true; fi
gcc -O2 -c -DNETBSD_CORE   -I. -I. -I./../include  -g stabs.c
if [ -n "" ]; then \
	  gcc -O2 -c  -DNETBSD_CORE   -I. -I. -I./../include  -g stab-syms.c -o pic/stab-syms.o; \
	else true; fi
gcc -O2 -c -DNETBSD_CORE   -I. -I. -I./../include  -g stab-syms.c
if [ -n "" ]; then \
	  gcc -O2 -c  -DNETBSD_CORE   -I. -I. -I./../include  -g elf32-mips.c -o pic/elf32-mips.o; \
	else true; fi
gcc -O2 -c -DNETBSD_CORE   -I. -I. -I./../include  -g elf32-mips.c
if [ -n "" ]; then \
	  gcc -O2 -c  -DNETBSD_CORE   -I. -I. -I./../include  -g elf32.c -o pic/elf32.o; \
	else true; fi
gcc -O2 -c -DNETBSD_CORE   -I. -I. -I./../include  -g elf32.c
if [ -n "" ]; then \
	  gcc -O2 -c  -DNETBSD_CORE   -I. -I. -I./../include  -g elflink.c -o pic/elflink.o; \
	else true; fi
gcc -O2 -c -DNETBSD_CORE   -I. -I. -I./../include  -g elflink.c
if [ -n "" ]; then \
	  gcc -O2 -c  -DNETBSD_CORE   -I. -I. -I./../include  -g ecofflink.c -o pic/ecofflink.o; \
	else true; fi
gcc -O2 -c -DNETBSD_CORE   -I. -I. -I./../include  -g ecofflink.c
if [ -n "" ]; then \
	  gcc -O2 -c  -DNETBSD_CORE   -I. -I. -I./../include  -g cpu-mips.c -o pic/cpu-mips.o; \
	else true; fi
gcc -O2 -c -DNETBSD_CORE   -I. -I. -I./../include  -g cpu-mips.c
gcc -O2 -c -DDEFAULT_VECTOR=bfd_elf32_littlemips_vec -DSELECT_VECS='&bfd_elf32_littlemips_vec,&bfd_elf32_bigmips_vec' -DSELECT_ARCHITECTURES='&bfd_mips_arch' -DHAVE_bfd_elf32_littlemips_vec -DHAVE_bfd_elf32_bigmips_vec -DNETBSD_CORE   -I. -I. -I./../include  -g ./netbsd-core.c \
	-I../../../../../usr/cross/pmonmips/usr/include -o netbsd-core.o
./netbsd-core.c:31:22: sys/core.h: No such file or directory
./netbsd-core.c:39: error: field `core' has incomplete type
./netbsd-core.c: In function `netbsd_core_core_file_p':
./netbsd-core.c:61: error: storage size of 'core' isn't known
./netbsd-core.c:62: error: storage size of 'coreseg' isn't known
./netbsd-core.c:71: error: `COREMAGIC' undeclared (first use in this function)
./netbsd-core.c:71: error: (Each undeclared identifier is reported only once
./netbsd-core.c:71: error: for each function it appears in.)
./netbsd-core.c:97: error: `CORESEGMAGIC' undeclared (first use in this function)
./netbsd-core.c:119: error: `CORE_CPU' undeclared (first use in this function)
./netbsd-core.c:143: error: `CORE_DATA' undeclared (first use in this function)
./netbsd-core.c:147: error: `CORE_STACK' undeclared (first use in this function)
gmake[1]: *** [netbsd-core.o] Error 1
gmake[1]: Leaving directory `/home/andy/src/dev/openbsd/src/gnu/usr.bin/binutils/bfd'
gmake: *** [all-bfd] Error 2
*** Error code 2

Stop in /home/andy/src/dev/openbsd/src (line 216 of Makefile).
make: *** [bsd-cross-binutils] Error 1

--MP_UQEOkzGQSktncIx1TkEOiau--
