summaryrefslogtreecommitdiff
path: root/check-FIXME.pl
diff options
context:
space:
mode:
authorDarin Adler <darin@src.gnome.org>2000-05-09 00:57:17 +0000
committerDarin Adler <darin@src.gnome.org>2000-05-09 00:57:17 +0000
commit8ad77275c8db346ff4f9f7f90f948102b3adf990 (patch)
treead2ff08cd0756d145bde4c01c26701a6124d6ea2 /check-FIXME.pl
parentc0ed560dddb9cc83dd6a6201c0f9f5f86787b824 (diff)
downloadnautilus-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-FIXME.pl')
-rwxr-xr-xcheck-FIXME.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/check-FIXME.pl b/check-FIXME.pl
index e0606b253..e672a2caa 100755
--- a/check-FIXME.pl
+++ b/check-FIXME.pl
@@ -33,7 +33,7 @@ use strict;
my %skip_files;
if (!@ARGV)
{
- @ARGV = `find -name '*' -and ! \\( -name '*~' -or -name '#*' -or -name 'ChangeLog*' -or -name 'Entries' \\) -print`;
+ @ARGV = `find . -name '*' -and ! \\( -name '*~' -or -name '#*' -or -name 'ChangeLog*' -or -name 'Entries' \\) -print`;
%skip_files =
(
"./TODO" => 1,