diff options
author | Jim Meyering <meyering@redhat.com> | 2008-06-22 18:57:39 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2008-06-22 18:57:39 +0200 |
commit | 3ea1fe588e20f196cc9b9907d5943bd620c6b944 (patch) | |
tree | c89c53d7e907cebae04dc19c704a4299a3085fd3 | |
parent | 574f7614039ce5b4c00808acc42d97856d4ff7d9 (diff) | |
download | coreutils-3ea1fe588e20f196cc9b9907d5943bd620c6b944.tar.xz |
use gnulib's "open" module
* bootstrap.conf (gnulib_modules): Add open.
This is required at least for Solaris 9 and HP-UX 11, to
avoid a truncate test failure. For details, see this thread:
http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/13755
-rw-r--r-- | bootstrap.conf | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bootstrap.conf b/bootstrap.conf index 5685ad55b..8289f693a 100644 --- a/bootstrap.conf +++ b/bootstrap.conf @@ -105,6 +105,10 @@ gnulib_modules=" xstrtol xstrtold xstrtoumax yesno " +# Required at least for truncate's truncate-fail-diag test +# on Solaris 7, Solaris 9, and HP-UX 11. +gnulib_modules="$gnulib_modules open" + # Other locale categories that need message catalogs. EXTRA_LOCALE_CATEGORIES=LC_TIME |