diff options
author | 2003-02-03 18:35:40 +0000 | |
---|---|---|
committer | 2003-02-03 18:35:40 +0000 | |
commit | 47765b69a55be170a0ebadbe53bc1b37cf6aa60c (patch) | |
tree | 962fab09507883a11db6a3e29a15105a1b310f59 /sys-devel/gcc/files | |
parent | Version bump. (diff) | |
download | gentoo-2-47765b69a55be170a0ebadbe53bc1b37cf6aa60c.tar.gz gentoo-2-47765b69a55be170a0ebadbe53bc1b37cf6aa60c.tar.bz2 gentoo-2-47765b69a55be170a0ebadbe53bc1b37cf6aa60c.zip |
get fixlafiles.awk to scan subdirs
Diffstat (limited to 'sys-devel/gcc/files')
-rw-r--r-- | sys-devel/gcc/files/awk/fixlafiles.awk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys-devel/gcc/files/awk/fixlafiles.awk b/sys-devel/gcc/files/awk/fixlafiles.awk index 3c929b4d1a1d..29d86f07c7ed 100644 --- a/sys-devel/gcc/files/awk/fixlafiles.awk +++ b/sys-devel/gcc/files/awk/fixlafiles.awk @@ -1,7 +1,7 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # Author: Martin Schlemmer <azarah@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/files/awk/fixlafiles.awk,v 1.4 2002/11/26 07:44:47 azarah Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/files/awk/fixlafiles.awk,v 1.5 2003/02/03 18:35:40 azarah Exp $ function einfo(string) { @@ -81,7 +81,7 @@ BEGIN { einfo("Scanning " DIRLIST[x] "...") - pipe = "ls -1 " DIRLIST[x] "/*.la 2>/dev/null" + pipe = "find " DIRLIST[x] "/ -name '*.la' 2>/dev/null" while (((pipe) | getline la_files) > 0) { CHANGED = 0 |