From 186c990bd95033f193e62eec205907272d04cd5a Mon Sep 17 00:00:00 2001 From: luis Date: Thu, 10 Jun 2010 15:13:39 +0000 Subject: [PATCH] Fixed a bug that caused Nping to be left out of the makeclean-ing or makedistclean-ing process --- configure.ac | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configure.ac b/configure.ac index d07ad7332..fbee6fd9d 100644 --- a/configure.ac +++ b/configure.ac @@ -243,10 +243,14 @@ if test "$with_nping" = "no"; then BUILDNPING="" INSTALLNPING="" UNINSTALLNPING="" + NPING_CLEAN="" + NPING_DIST_CLEAN="" else BUILDNPING=build-nping INSTALLNPING=install-nping UNINSTALLNPING=uninstall-nping + NPING_CLEAN=nping_clean + NPING_DIST_CLEAN=nping_dist_clean AC_CONFIG_SUBDIRS(nping) fi AC_SUBST(BUILDNPING)