diff options
author | Clint Adams <clint@users.sourceforge.net> | 2000-12-23 07:26:11 +0000 |
---|---|---|
committer | Clint Adams <clint@users.sourceforge.net> | 2000-12-23 07:26:11 +0000 |
commit | ebb9daa31905c88d93b28abf5b465b17b9ce25a0 (patch) | |
tree | 7f9daf78f094c794f6b5dc0bce585c995cb660aa | |
parent | 25faa7dbf9c0a92ab510ef20b757898b925df3a5 (diff) | |
download | zsh-ebb9daa31905c88d93b28abf5b465b17b9ce25a0.tar.gz zsh-ebb9daa31905c88d93b28abf5b465b17b9ce25a0.tar.xz zsh-ebb9daa31905c88d93b28abf5b465b17b9ce25a0.zip |
unposted: thinko in configure.in for determination of jobtable size
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | configure.in | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index 3bbf654a4..74fc7d9d7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2000-12-23 Clint Adams <schizo@debian.org> + * unposted: configure.in: thinko in jobtable size determination. + * Chip Salzenberg: 13310: Completion/Debian/_apt: correct typo for apt-cache completion. diff --git a/configure.in b/configure.in index e59674287..734ac3da3 100644 --- a/configure.in +++ b/configure.in @@ -1386,6 +1386,7 @@ AC_ARG_ENABLE(max-jobtable-size, #endif ], maxj=max) + fi if test x$maxj = xmax; then AC_DEFINE(MAXJOB, MAX_TASKS_PER_USER) @@ -1395,7 +1396,6 @@ AC_ARG_ENABLE(max-jobtable-size, AC_DEFINE(MAXJOB, 256) AC_MSG_RESULT(${msg}256) fi - fi elif test x$enableval = xno; then AC_DEFINE(MAXJOB,512) |