From 40cb9c92b65dd15489788f42df8d08347a905784 Mon Sep 17 00:00:00 2001 From: Sebastian Pop Date: Tue, 11 Aug 2009 10:56:21 -0500 Subject: [PATCH] Use top_builddir, not builddir that is undefined. --- Makefile.am | 4 ++-- Makefile.in | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile.am b/Makefile.am index 9aa4a11..d12a949 100644 --- a/Makefile.am +++ b/Makefile.am @@ -113,6 +113,6 @@ doc: doxygen ./autoconf/Doxyfile clean-local: - rm $(builddir)/version.h - rm $(builddir)/doc/gitversion.texi + rm $(top_builddir)/version.h + rm $(top_builddir)/doc/gitversion.texi diff --git a/Makefile.in b/Makefile.in index fce4dd4..c2b89fa 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1013,8 +1013,8 @@ doc: doxygen ./autoconf/Doxyfile clean-local: - rm $(builddir)/version.h - rm $(builddir)/doc/gitversion.texi + rm $(top_builddir)/version.h + rm $(top_builddir)/doc/gitversion.texi # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: -- 2.11.4.GIT