mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-23 03:33:34 -04:00
20 lines
724 B
Plaintext
20 lines
724 B
Plaintext
$NetBSD: patch-test_Makefile.in,v 1.2 2014/06/06 23:24:10 ryoon Exp $
|
|
|
|
Non portable '-f' flag for ls should be -U for unsorted
|
|
pkgsrc replacement links mean -L should be used too.
|
|
|
|
NB on SunOS, locale/en should be installed in order to have
|
|
all tests successfully execute (namely mbfw1 and mbprintf1)
|
|
|
|
--- test/Makefile.in.orig 2014-04-08 16:13:13.000000000 +0000
|
|
+++ test/Makefile.in
|
|
@@ -2249,7 +2249,7 @@ readdir:
|
|
fi
|
|
@echo $@
|
|
@$(AWK) -f "$(srcdir)"/readdir.awk "$(top_srcdir)" > _$@
|
|
- @ls -afi "$(top_srcdir)" > _dirlist
|
|
+ @ls -aiUL "$(top_srcdir)" > _dirlist
|
|
@ls -lna "$(top_srcdir)" | sed 1d > _longlist
|
|
@$(AWK) -f "$(srcdir)"/readdir0.awk -v extout=_$@ \
|
|
-v dirlist=_dirlist -v longlist=_longlist > $@.ok
|