Re: [ptxdist] Not reproducable bugs on compiling OSELAS Toolchain

2012-02-26 Thread Bernhard Walle
Hi, * Andreas Bießmann [2012-02-25 09:21]: > > Next you will need some GNU tools like coreutils [1], gawk [2], sed [3], > tar [4], flex [5] and bison/yacc [6]. Remaining requirements of ptxdist > should be sufficient by OS X delivered software. flex and bison can be used from Apple (at least I

[ptxdist] [PATCH] {os-release, rootfs}.make: Don't rely on GNU date

2012-02-26 Thread Bernhard Walle
date -Iseconds is a GNU extension. Since that one is only used in two places, don't check for GNU date but use the portable variant (format specifiers). Signed-off-by: Bernhard Walle --- rules/os-release.make |2 +- rules/rootfs.make |2 +- 2 files changed, 2 insertions(+), 2 deletio

[ptxdist] [PATCH] configure.ac: Check for GNU mknod

2012-02-26 Thread Bernhard Walle
We need that because scripts/lib/ptxd_make_xpkg_pkg.sh uses the -m parameter of mknod which doesn't exist in BSD mknod. Signed-off-by: Bernhard Walle --- Makefile.in |1 + configure.ac |1 + 2 files changed, 2 insertions(+), 0 deletions(-) diff --git a/Makefile.in b/Makefile.in index e

[ptxdist] [PATCH] configure.ac: Check for GNU tar

2012-02-26 Thread Bernhard Walle
ptxd_make_world_extract uses the option --remove-files which is a GNU extension to tar. Because GNU tar is not in GNU coreutils, I changed the GNU_COREUTILS macro to GNU_TOOL and added a second parameter: the package where the tool is found. I think that's better than providing a new macro just fo