Fixed a bug that caused Nping to be left out of the makeclean-ing or makedistclean-ing process

This commit is contained in:
luis 2010-06-10 15:13:39 +00:00
parent 46a819b034
commit 186c990bd9

View file

@ -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)