use ${WORKDIR} instead of "work". Fixes PR 7096 reported by
Julian Assange <proff@suburbia.net>
This commit is contained in:
parent
a738c183d7
commit
55d19f307a
1 changed files with 2 additions and 2 deletions
|
@ -1,11 +1,11 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# $NetBSD: post-patch,v 1.2 1998/08/07 10:40:40 agc Exp $
|
||||
# $NetBSD: post-patch,v 1.3 1999/03/07 16:08:26 hubertf Exp $
|
||||
#
|
||||
#this script changes all the /usr/local/bin/perl stuff to what it should be.
|
||||
|
||||
pl=`which perl | sed 's/\//\\\\\\//g'`
|
||||
find work -name \*.pl | (
|
||||
find ${WRKDIR} -name \*.pl | (
|
||||
while read a; do
|
||||
cp $a tmp
|
||||
sed "s/#! *\/usr\/local\/bin\/perl/#!$pl/" tmp > $a
|
||||
|
|
Loading…
Reference in a new issue