find-requires fix from 67325

This commit is contained in:
Elliot Lee 2002-07-11 18:48:52 +00:00
parent 38aa583967
commit 8617b2fe71
2 changed files with 2 additions and 1 deletions

View File

@ -72,7 +72,7 @@ fi
# --- Script interpreters.
for f in $scriptlist; do
[ -r $f -a -x $f ] || continue
interp=`head -1 $f | sed -e 's/^\#\![ ]*//' | cut -d" " -f1`
interp=`head -n 1 $f | sed -e 's/^\#\![ ]*//' | cut -d" " -f1`
interplist="$interplist $interp"
case $interp in
*/perl) perllist="$perllist $f" ;;

View File

@ -29,6 +29,7 @@ rm -rf ${RPM_BUILD_ROOT}
%changelog
* Thu Jul 11 2002 Elliot Lee <sopwith@redhat.com> 7.3.92-6
- find-lang.sh fix from 67368
- find-requires fix from 67325
* Thu Jul 11 2002 Elliot Lee <sopwith@redhat.com> 7.3.92-5
- Add /etc/rpm/macros back to make #67951 go away