From mboxrd@z Thu Jan 1 00:00:00 1970 From: prj@po.cwru.edu (Paul Jarc) Subject: reiserfsprogs (3.6.9, .10, .11) installation problems Date: Wed, 20 Aug 2003 19:51:04 -0400 Message-ID: Mime-Version: 1.0 Content-Transfer-Encoding: 7BIT Return-path: list-help: list-unsubscribe: list-post: Errors-To: flx@namesys.com List-Id: Content-Type: text/plain; charset="us-ascii" To: reiserfs-list@namesys.com If pdksh is being used to run reiserfsprogs' ./configure, the script triggers a bug in pdksh. This line triggers the bug: fprintf(fout, "\t\\\" "\n"); AFAICT, this is supposed to become a C string containing tab, backslash, an newline. Right? Then this will work for both bash and pdksh: fprintf(fout, "\\t\\\\\\n"); Also, this earlier line is misspelled: #define _GNU_SOURSE It should be: #define _GNU_SOURCE ^ But since it works even when it's misspelled, it probably doesn't need to be there at all. paul