Import of pkgsrc-2016Q3

This commit is contained in:
2016-10-14 07:49:11 +02:00
committed by Lionel Sambuc
parent 9d819b6d54
commit 1242aa1e36
35952 changed files with 949749 additions and 377083 deletions

View File

@@ -1,8 +1,8 @@
# $NetBSD: Makefile,v 1.23 2015/09/07 06:43:48 dsainty Exp $
# $NetBSD: Makefile,v 1.24 2016/06/05 04:44:56 richard Exp $
#
DISTNAME= pdksh-5.2.14
PKGREVISION= 6
PKGREVISION= 7
CATEGORIES= shells
MASTER_SITES= ftp://ftp.cs.mun.ca/pub/pdksh/ \
http://gd.tuwien.ac.at/utils/shells/pdksh/ \

View File

@@ -135,7 +135,7 @@ config.status: configure
# two steps to prevent the creation of a bogus siglist.out
siglist.out: config.h sh.h siglist.in siglist.sh
$(srcdir)/siglist.sh "$(CPP) $(CPPFLAGS) $(DEFS) -I. -I$(srcdir)" < $(srcdir)/siglist.in > tmpsiglist.out
$(srcdir)/siglist.sh "$(CPP) -P $(CPPFLAGS) $(DEFS) -I. -I$(srcdir)" < $(srcdir)/siglist.in > tmpsiglist.out
mv tmpsiglist.out siglist.out
# two steps to prevent the creation of a bogus emacs.out

View File

@@ -1,4 +1,4 @@
/* $NetBSD: exec.c,v 1.3 2008/06/15 14:20:09 tnn Exp $ */
/* $NetBSD: exec.c,v 1.4 2016/06/05 04:44:56 richard Exp $ */
/*
* execute command tree
@@ -334,7 +334,7 @@ execute(t, flags)
}
#ifdef KSH
else { /* TSELECT */
for (;;) {
while (*ap != NULL) {
if (!(cp = do_selectargs(ap, is_first))) {
rv = 1;
break;

View File

@@ -1,4 +1,4 @@
/* $NetBSD: syn.c,v 1.3 2008/06/15 14:20:09 tnn Exp $ */
/* $NetBSD: syn.c,v 1.4 2016/06/05 04:44:56 richard Exp $ */
/*
* shell parser (C version)
@@ -609,13 +609,8 @@ wordlist()
XPput(args, yylval.cp);
if (c != '\n' && c != ';')
syntaxerr((char *) 0);
if (XPsize(args) == 0) {
XPfree(args);
return NULL;
} else {
XPput(args, NULL);
return (char **) XPclose(args);
}
XPput(args, NULL);
return (char **) XPclose(args);
}
/*