blob: be18a7e6066f88ee81a4d78811ce5c78b47cb893 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- autoheader.sh.orig 2000-02-27 16:18:10 UTC
+++ autoheader.sh
@@ -194,7 +194,7 @@ if test -n "$syms"; then
# Some fgrep's have limits on the number of lines that can be in the
# pattern on the command line, so use a temporary file containing the
# pattern.
- (fgrep_tmp=${TMPDIR-/tmp}/autoh$$
+ (fgrep_tmp=`mktemp ${TMPDIR-/tmp}/autoh.XXXXXXXXXX` || exit 1
trap "rm -f $fgrep_tmp; exit 1" 1 2 15
cat > $fgrep_tmp <<EOF
$syms
|