mirror of
https://github.com/macports/mpbb.git
synced 2026-03-31 14:38:29 -07:00
* make more noise on stdout * don't skip building ports that already have an archive git-svn-id: https://svn.macports.org/repository/macports/contrib/mpab@79880 d073be05-634f-4543-b044-5fe20cf6d1d6
15 lines
205 B
Bash
Executable File
15 lines
205 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# re-create the portindex
|
|
#
|
|
|
|
if [[ -z "$PREFIX" ]]; then
|
|
PREFIX=/opt/local
|
|
fi
|
|
if [[ -z "$SRC_PREFIX" ]]; then
|
|
SRC_PREFIX=/opt/mports
|
|
fi
|
|
|
|
cd ${SRC_PREFIX}/dports
|
|
${PREFIX}/bin/portindex
|