From 420906770f30e1b5b7bdcf8cad882885c036a564 Mon Sep 17 00:00:00 2001 From: "seawood%netscape.com" Date: Sat, 15 Mar 2003 05:12:33 +0000 Subject: [PATCH] Fix codesighs detection for objdir builds --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.in b/configure.in index 0b8879eb97ca..117d0356941f 100644 --- a/configure.in +++ b/configure.in @@ -3992,7 +3992,7 @@ dnl Enable code size metrics. dnl ======================================================== MOZ_ARG_ENABLE_BOOL(codesighs, [ --enable-codesighs Enable code size analysis tools], -[ if test -d ./tools/codesighs; then +[ if test -d $srcdir/tools/codesighs; then MOZ_MAPINFO=1 else AC_MSG_ERROR([Codesighs directory ./tools/codesighs required.])