diff options
author | Greg McGary <greg@mcgary.org> | 1999-03-29 08:35:25 +0000 |
---|---|---|
committer | Greg McGary <greg@mcgary.org> | 1999-03-29 08:35:25 +0000 |
commit | 642fc36b13f28738055aad821fe9607d75d2e905 (patch) | |
tree | f5b0f100dffa78c8bb04a7812715035e8c283d05 /Makefile.in | |
parent | 7b622fdaceda9f3a39cbc715c668c4eff3e9cef4 (diff) | |
download | idutils-r3_2b.tar.gz idutils-r3_2b.tar.bz2 idutils-r3_2b.zip |
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index d2442ac..6da3099 100644 --- a/Makefile.in +++ b/Makefile.in @@ -10,7 +10,6 @@ # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. - SHELL = @SHELL@ srcdir = @srcdir@ @@ -93,6 +92,7 @@ VERSION = @VERSION@ l = @l@ lispdir = @lispdir@ + AUTOMAKE_OPTIONS = gnits 1.2h SUBDIRS = lib libidu intl src lisp m4 po doc testsuite @@ -198,7 +198,7 @@ maintainer-clean-recursive: dot_seen=no; \ rev=''; list='$(SUBDIRS)'; for subdir in $$list; do \ rev="$$subdir $$rev"; \ - test "$$subdir" = "." && dot_seen=yes; \ + if test "$$subdir" = "."; then dot_seen=yes; else :; fi; \ done; \ test "$$dot_seen" = "no" && rev=". $$rev"; \ target=`echo $@ | sed s/-recursive//`; \ |