mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-05 22:43:24 +00:00
8951fb7819
PR: 8091 Submitted by: Sheldon Hearn <axl@iafrica.com>
10 lines
218 B
Bash
10 lines
218 B
Bash
#!/bin/sh
|
|
#
|
|
# $Id: configure,v 1.4 1996/02/09 12:01:48 adam Exp $
|
|
#
|
|
|
|
for i in src/paths.h identd.man idecrypt.man ; do
|
|
mv ${WRKSRC}/$i ${WRKSRC}/$i.bak
|
|
sed <${WRKSRC}/$i.bak >${WRKSRC}/$i s+!!PREFIX!!+$PREFIX+g
|
|
done
|