diff options
author | Jonathan Kew <jfkthame@googlemail.com> | 2006-09-29 22:29:44 +0000 |
---|---|---|
committer | Jonathan Kew <jfkthame@googlemail.com> | 2006-09-29 22:29:44 +0000 |
commit | 8d4c4a5e156f25b4b8350f413f0bc1d56a772d5d (patch) | |
tree | c2c6ccc72e1cb3ea3344b8a7526efece4e27bf2f /Build | |
parent | 5a5a0cfe6591879503969974251ef9b52cde23fb (diff) |
suppress harmless error msg during configure
git-svn-id: svn://tug.org/texlive/trunk@2222 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build')
-rwxr-xr-x | Build/source/configure | 2 | ||||
-rw-r--r-- | Build/source/configure.in | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Build/source/configure b/Build/source/configure index ba78cf7ebbf..bb23d72e45f 100755 --- a/Build/source/configure +++ b/Build/source/configure @@ -4790,7 +4790,7 @@ for pkg in $PKGS; do if test $pkg = sam2p; then # attempt to discover if srcdir = builddir. dir1=`cd $srcdir/utils/sam2p && /bin/pwd` - dir2=`cd utils/sam2p && /bin/pwd` + dir2=`cd utils/sam2p 2>/dev/null && /bin/pwd` if test "$dir1" != "$dir2"; then # this is a terrible kludge, but sam2p configure actively # defeats srcdir!=objdir support, and Peter S. doesn't want to diff --git a/Build/source/configure.in b/Build/source/configure.in index b2961fd91ee..80d3ff56801 100644 --- a/Build/source/configure.in +++ b/Build/source/configure.in @@ -241,7 +241,7 @@ for pkg in $PKGS; do if test $pkg = sam2p; then # attempt to discover if srcdir = builddir. dir1=`cd $srcdir/utils/sam2p && /bin/pwd` - dir2=`cd utils/sam2p && /bin/pwd` + dir2=`cd utils/sam2p 2>/dev/null && /bin/pwd` if test "$dir1" != "$dir2"; then # this is a terrible kludge, but sam2p configure actively # defeats srcdir!=objdir support, and Peter S. doesn't want to |