mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
18c9beae17
overstayed its welcome.
10 lines
237 B
Bash
10 lines
237 B
Bash
#! /bin/sh
|
|
|
|
cd ${WRKSRC}
|
|
|
|
if [ -f /usr/lib/aout/crt0.o -a ! -f /usr/lib/crt0.o ]; then
|
|
sed -e "s|/usr/lib/crt0\.o|/usr/lib/aout/crt0.o|g" \
|
|
src/s/freebsd.h > src/s/freebsd.h.new || exit
|
|
mv src/s/freebsd.h.new src/s/freebsd.h
|
|
fi
|