File tree Expand file tree Collapse file tree 4 files changed +49
-0
lines changed
Expand file tree Collapse file tree 4 files changed +49
-0
lines changed Original file line number Diff line number Diff line change 1+ #! /bin/sh
2+
3+ if [ -x /usr/local/bin/pkgx ]; then
4+ # removed from PATH deliberately
5+ pkgx=/usr/local/bin/pkgx
6+ else
7+ # probs this is running in pkgx CI/CD
8+ pkgx=" ${PKGX_DIR:- $HOME / .pkgx} /pkgx.sh/v*/bin/pkgx"
9+ fi
10+
11+ exec " $pkgx " +gnu.org/autoconf -- autoconf " $@ "
Original file line number Diff line number Diff line change 1+ #! /bin/sh
2+
3+ if [ -x /usr/local/bin/pkgx ]; then
4+ # removed from PATH deliberately
5+ pkgx=/usr/local/bin/pkgx
6+ else
7+ # probs this is running in pkgx CI/CD
8+ pkgx=" ${PKGX_DIR:- $HOME / .pkgx} /pkgx.sh/v*/bin/pkgx"
9+ fi
10+
11+ exec " $pkgx " +gnu.org/automake -- automake " $@ "
Original file line number Diff line number Diff line change 1+ #! /bin/sh
2+
3+ # linking on darwin is best left to Apple’s choices
4+ if [ $( uname) = " Darwin" ]; then
5+ exec /usr/bin/libtool " $@ "
6+ fi
7+
8+ if [ -x /usr/local/bin/pkgx ]; then
9+ # removed from PATH deliberately
10+ pkgx=/usr/local/bin/pkgx
11+ else
12+ # probs this is running in pkgx CI/CD
13+ pkgx=" ${PKGX_DIR:- $HOME / .pkgx} /pkgx.sh/v*/bin/pkgx"
14+ fi
15+
16+ exec " $pkgx " +gnu.org/libtool -- libtool " $@ "
Original file line number Diff line number Diff line change 1+ #! /bin/sh
2+
3+ if [ -x /usr/local/bin/pkgx ]; then
4+ # removed from PATH deliberately
5+ pkgx=/usr/local/bin/pkgx
6+ else
7+ # probs this is running in pkgx CI/CD
8+ pkgx=" ${PKGX_DIR:- $HOME / .pkgx} /pkgx.sh/v*/bin/pkgx"
9+ fi
10+
11+ exec " $pkgx " +perl.org -- perl " $@ "
You can’t perform that action at this time.
0 commit comments