mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-14 23:46:10 +00:00
7 lines
183 B
Plaintext
7 lines
183 B
Plaintext
|
#!/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
|