From 2eed6a6601f65e86980aa007cdda08021c42d278 Mon Sep 17 00:00:00 2001 From: Jean Delvare Date: Thu, 15 Sep 2005 18:02:40 +0000 Subject: - Omitting the search directory in "find" is not portable; add an explicit "." (Gary V. Vaughan, John Vandenberg). --- Makefile.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile.in') diff --git a/Makefile.in b/Makefile.in index 994dc94..79fbc8e 100644 --- a/Makefile.in +++ b/Makefile.in @@ -46,8 +46,8 @@ EXEEXT := @EXEEXT@ ISODATE := $(shell date +%Y-%m-%d) #----------------------------------------------------------------------- -DIRT += $(shell find -name '*~') -DIRT += $(shell find -name '.\#*') +DIRT += $(shell find . -name '*~') +DIRT += $(shell find . -name '.\#*') SRC += COPYING AUTHORS TODO Makefile.in \ configure.ac config/install-sh \ -- cgit