mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-07 22:58:11 +00:00
7253116e7c
Corrected an error in configure script.
16 lines
310 B
Bash
16 lines
310 B
Bash
#!/bin/sh
|
|
|
|
cd $WRKSRC || exit 1
|
|
|
|
mv runbb.sh runbb.sh.orig
|
|
sed -e "s:/home/sean/bb:$PREFIX/bb:g" \
|
|
< runbb.sh.orig \
|
|
> runbb.sh
|
|
|
|
HOSTNAME=`hostname`
|
|
|
|
mv $WRKSRC/etc/bb-hosts $WRKSRC/etc/bb-hosts.orig
|
|
sed -e "s:@@IP@@:172.16.1.1:" -e "s:@@HOST@@:$HOSTNAME:g" \
|
|
< $FILESDIR/bb-hosts \
|
|
> $WRKSRC/etc/bb-hosts
|