mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
1fccd23656
PR: ports/8408 Submitted by: Issei Suzuki <issei@jp.FreeBSD.ORG>
7 lines
183 B
Bash
7 lines
183 B
Bash
#!/bin/sh
|
|
|
|
files="sample.steprc sample.steprc.ja_JP.EUC configure.h afterstep/afterstep.man"
|
|
for i in $files; do
|
|
/usr/bin/perl -pi -e 's|%%PREFIX%%|$ENV{'PREFIX'}|g' $WRKSRC/$i
|
|
done
|