diff options
-rw-r--r-- | Build/source/configure.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Build/source/configure.in b/Build/source/configure.in index 80d3ff56801..c9ff29a3d79 100644 --- a/Build/source/configure.in +++ b/Build/source/configure.in @@ -231,7 +231,7 @@ test "$needs_teckit" = yes \ AC_CONFIG_SUBDIRS([libs]) -PKGS='dialog lcdf-typetools pdfopen psutils sam2p t1utils texi2html texinfo' +PKGS='dialog lcdf-typetools pdfopen psutils t1utils texi2html texinfo' ESUBDIRS= test -d utils || mkdir utils for pkg in $PKGS; do @@ -239,6 +239,9 @@ for pkg in $PKGS; do if eval "test \"`echo '$with_'${pkg}|sed 's/-/_/g'`\" != no"; then ESUBDIRS="$ESUBDIRS utils/$pkg" if test $pkg = sam2p; then + # we no longer build sam2p by default, but leaving this bit in + # case we reinstate it. --karl, 8nov06. + # # attempt to discover if srcdir = builddir. dir1=`cd $srcdir/utils/sam2p && /bin/pwd` dir2=`cd utils/sam2p 2>/dev/null && /bin/pwd` |