Skip to content

Commit 391cb0f

Browse files
committed
Fix checkin into wrong hg branch.
--HG-- branch : default-branch
2 parents 7e964dd + 863b610 commit 391cb0f

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

Makefile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,12 @@ DEFAULT_PLATFORM = pc86
1111

1212
ACK_TEMP_DIR = /tmp
1313

14-
# Where is the ACK going to be installed, eventually?
14+
# Where is the ACK going to be installed, eventually? If you don't want to
15+
# install it and just want to run the ACK from the build directory
16+
# (/tmp/ack-build/staging, by default), leave this as $(INSDIR).
1517

16-
PREFIX = /usr/local
18+
#PREFIX = /usr/local
19+
PREFIX = $(INSDIR)
1720

1821
# Where do you want to put the object files used when building?
1922

lang/cem/cemcom.ansi/input.c

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,10 +82,9 @@ AtEoIF()
8282
}
8383
IncludeLevel--;
8484
#endif
85-
if (WorkingDir[0] != '\0') free(WorkingDir);
85+
/* We don't free WorkingDir and FileName here because the rest of the
86+
* compiler may be holding pointers to them for displaying error messages.
87+
*/
8688
#endif /* NOPP */
87-
#ifndef LINT
88-
if (FileName != source) free(FileName);
89-
#endif
9089
return 0;
9190
}

0 commit comments

Comments
 (0)