diff options
author | Darin Adler <darin@src.gnome.org> | 2000-05-09 00:57:17 +0000 |
---|---|---|
committer | Darin Adler <darin@src.gnome.org> | 2000-05-09 00:57:17 +0000 |
commit | 8ad77275c8db346ff4f9f7f90f948102b3adf990 (patch) | |
tree | ad2ff08cd0756d145bde4c01c26701a6124d6ea2 /check-config-h.pl | |
parent | c0ed560dddb9cc83dd6a6201c0f9f5f86787b824 (diff) | |
download | nautilus-8ad77275c8db346ff4f9f7f90f948102b3adf990.tar.gz |
Added "." parameter to "find" so it works with non-GNU versions of find.
* check-FIXME.pl:
* check-config-h.pl: Added "." parameter to "find" so it works
with non-GNU versions of find. This was for Morten, who wanted
to run check-config-h.pl on Gnumeric.
* libnautilus-extensions/nautilus-directory-async.c:
(start_getting_top_lefts): Turn embedded text back on.
* libnautilus-extensions/nautilus-directory.c:
(nautilus_directory_get_metadata): Fixed a bug that was showing
up in "make check".
(nautilus_self_check_directory): Got rid of GNOME VFS tests,
since I moved the same tests into test-async-cancel in the
gnome-vfs module.
Diffstat (limited to 'check-config-h.pl')
-rwxr-xr-x | check-config-h.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/check-config-h.pl b/check-config-h.pl index 187d3480f..d83a59738 100755 --- a/check-config-h.pl +++ b/check-config-h.pl @@ -37,7 +37,7 @@ my $edit = 0; # default to all the files starting from the current directory if (!@ARGV) { - @ARGV = `find -name '*.c' -print`; + @ARGV = `find . -name '*.c' -print`; } # locate all of the target lines |