mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
798502a49b
The Tk toolkit with a NeXTSTEP look and more. PR: 11424 Submitted by: KIRIYAMA Kazuhiko <kiri@pis.toba-cmt.ac.jp>
11 lines
177 B
Bash
11 lines
177 B
Bash
#!/bin/sh
|
|
|
|
dirs="."
|
|
|
|
for d in ${dirs}; do
|
|
perl -pi -e '
|
|
s@^(prefix[ \t]*=).*$@$1\${PREFIX}@;
|
|
s@^(exec_prefix[ \t]*=).*$@$1\${PREFIX}@;
|
|
' ${WRKSRC}/${d}/Makefile
|
|
done
|