From fd730c85739e75605c4f75841df00f843d76eea3 Mon Sep 17 00:00:00 2001 From: "Gary V. Vaughan" Date: Thu, 2 Sep 2004 15:33:35 +0000 Subject: [PATCH] * Makefile.am (clean-ltmain-sh): Quote $(top_builddir) for the shell, incase it is not set when running maintainer rules with `make -fMakefile.maint'. Don't show the shell commands. --- ChangeLog | 5 +++++ Makefile.am | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 334d1b5f0..b41a295f8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2004-09-02 Gary V. Vaughan , + * Makefile.am (clean-ltmain-sh): Quote $(top_builddir) for the + shell, incase it is not set when running maintainer rules with + `make -fMakefile.maint'. + Don't show the shell commands. + * AUTHORS: Fix my email address. 2004-09-02 Ralf Wildenhues diff --git a/Makefile.am b/Makefile.am index 7f10f3804..5c9ff1ad9 100644 --- a/Makefile.am +++ b/Makefile.am @@ -79,8 +79,8 @@ vcl-tmp: ## previous builds left behind in the build tree, that would override the ## source tree version in current builds. clean-ltmain-sh: - -test $(top_srcdir) == $(top_builddir) || \ - rm -f $(top_builddir)/config/ltmain.sh + @-test "$(top_srcdir)" == "$(top_builddir)" || \ + rm -f "$(top_builddir)/config/ltmain.sh" # We build ltversion.m4 here, instead of from config.status, # because config.status is rerun each time one of configure's -- 2.47.2