Re: compiling error

2008-08-02 Thread Jim Meyering
Jeph Cowan [EMAIL PROTECTED] wrote: Hi Ralf. Thanks for the quick reply. I tried the GNU-make and had the same results: ... Making all in man make[2]: Entering directory `/ptmp/jeph/coreutils-6.12/man' make[2]: *** No rule to make target `\.x', needed by `\.1'. Stop. make[2]: Leaving

Re: Problems with coreutils-6.12.70-4f470

2008-08-02 Thread Jim Meyering
Peter Fales [EMAIL PROTECTED] wrote: I decided to have a look at the latest coreutils-6.12.70-4f470, and I'm seeing a new problem on Solaris 8. (Both sparc and x86) It seems that on Solaris, you can't simply copy the ACLs using GETACL/SETACL if the source file is in /tmp. This causes

[PATCH] * bootstrap: Fix unportable expr usage.

2008-08-02 Thread Ralf Wildenhues
--- Hi Jim, This fixes a bootstrap failure on FreeBSD due to: $ expr --gnulib-srcdir=foo : '--gnulib-srcdir=\(.*\)' expr: illegal option -- - usage: expr [-e] expression Cheers, Ralf bootstrap |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/bootstrap b/bootstrap

Re: [PATCH] * bootstrap: Fix unportable expr usage.

2008-08-02 Thread Jim Meyering
Ralf Wildenhues [EMAIL PROTECTED] wrote: Hi Jim, This fixes a bootstrap failure on FreeBSD due to: $ expr --gnulib-srcdir=foo : '--gnulib-srcdir=\(.*\)' expr: illegal option -- - usage: expr [-e] expression Thank you! Applied. ___ Bug-coreutils

Re: compiling error

2008-08-02 Thread Ralf Wildenhues
* Jim Meyering wrote on Fri, Aug 01, 2008 at 11:11:37AM CEST: Ralf Wildenhues [EMAIL PROTECTED] wrote: Jeph Cowan jeph at ucar.edu writes: Making all in man cd .. make am--refresh make: 1254-002 Cannot find a rule to create target \.x from dependencies. Stop. make:

Re: [PATCH] Again, do not change the mode of all directories below $HOME.

2008-08-02 Thread Ralf Wildenhues
Hi Jim, and sorry for the delay, * Jim Meyering wrote on Tue, Jul 22, 2008 at 09:42:30PM CEST: Ralf Wildenhues [EMAIL PROTECTED] wrote: But seriously, considering the potential for damage and mischief, perhaps it's time to add infrastructure that stops e.g., configure in its tracks

Re: [PATCH] Again, do not change the mode of all directories below $HOME.

2008-08-02 Thread Jim Meyering
Ralf Wildenhues [EMAIL PROTECTED] wrote: ... Would the following not have sufficed, too? -trap 'st=$?; cleanup_; d='$t_'; -cd '$test_dir_' chmod -R u+rwx $d rm -rf $d exit $st' 0 +trap 'st=$?; cleanup_; d=$t_; +cd $test_dir_ chmod -R u+rwx $d rm -rf $d exit $st' 0

[PATCH] Fix build-aux/check.mk for non-GNU make.

2008-08-02 Thread Ralf Wildenhues
* build-aux/check.mk ($(TEST_LOGS)) [!GNU_MAKE]: Check for a $(TESTS) test in the build dir, before one in srcdir. --- In gnulib-tests, 'make check' causes non-GNU make to try to update and execute $srcdir/test-EOVERFLOW: $ pmake check [...] pmake check-TESTS gcc -std=gnu99 -g -O2

[PATCH] Fix build-aux/check.mk for non-GNU make.

2008-08-02 Thread Ralf Wildenhues
* build-aux/check.mk ($(TEST_LOGS)) [!GNU_MAKE]: Check for a $(TESTS) test in the build dir, before one in srcdir. --- Hmpf. First, this updated patch fixes the alignment of backslash newline. Second, I should note that this whole shenanigan only works well because automake inserts an '$(MAKE)

Re: [PATCH] Fix build-aux/check.mk for non-GNU make.

2008-08-02 Thread Jim Meyering
Ralf Wildenhues [EMAIL PROTECTED] wrote: * build-aux/check.mk ($(TEST_LOGS)) [!GNU_MAKE]: Check for a $(TESTS) test in the build dir, before one in srcdir. --- Hmpf. First, this updated patch fixes the alignment of backslash newline. Second, I should note that this whole shenanigan only

Re: [PATCH] date malfunctions in the Turkish locale

2008-08-02 Thread Jim Meyering
Vefa Bicakci [EMAIL PROTECTED] wrote: As you can guess from the subject line, the date program Thank you for the bug report! To summarize, this invocation of date should not fail: $ LC_MESSAGES=C LC_CTYPE=tr_TR.UTF-8 date -d Fri date: invalid date `Fri' ... + setlocale(LC_ALL, C);

test failures on AIX 5.3: misc/sort-merge, test-copy-acl.sh

2008-08-02 Thread Ralf Wildenhues
Hi Jim, I'm getting the following test failures on AIX 5.3. They are using current git coreutils and gnulib, and gettext 0.16.1 IIRC. The UNKNOWN-dirty is because I must like it that way, I guess. ;-) Cheers, Ralf === GNU coreutils

Re: test failures on AIX 5.3: misc/sort-merge, test-copy-acl.sh

2008-08-02 Thread Jim Meyering
Ralf Wildenhues [EMAIL PROTECTED] wrote: I'm getting the following test failures on AIX 5.3. They are using current git coreutils and gnulib, and gettext 0.16.1 IIRC. The UNKNOWN-dirty is because I must like it that way, I guess. ;-) Thanks for the report! ... nmerge-yes... nmerge-no...

[PATCH] Support arbitrary-precision arithmetic in expr.

2008-08-02 Thread James Youngman
This code has more instances of #if HAVE_GMP than I would like, but I thought it was important to be able to transition smoothly from native arithmetic to arbitrary-precision arithmetic. 2008-08-02 James Youngman [EMAIL PROTECTED] Support arbitrary-precision arithmetic in expr.