diff options
author | Patrice Clement <monsieurp@gentoo.org> | 2016-06-01 07:13:51 +0000 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2016-06-01 07:14:05 +0000 |
commit | 3541cb30d8e99d81178a468f709f9f4f821e55d1 (patch) | |
tree | 8b595ee2a75d185cc402be67059d4125d623c177 /dev-util/yacc/files | |
parent | dev-python/mockredispy: add mockredispy-2.9.3 (diff) | |
download | gentoo-3541cb30d8e99d81178a468f709f9f4f821e55d1.tar.gz gentoo-3541cb30d8e99d81178a468f709f9f4f821e55d1.tar.bz2 gentoo-3541cb30d8e99d81178a468f709f9f4f821e55d1.zip |
dev-util/yacc: Housekeeping + EAPI 6 bump.
Package-Manager: portage-2.2.28
Diffstat (limited to 'dev-util/yacc/files')
-rw-r--r-- | dev-util/yacc/files/yacc-1.9.1-mkstemp.patch | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/dev-util/yacc/files/yacc-1.9.1-mkstemp.patch b/dev-util/yacc/files/yacc-1.9.1-mkstemp.patch new file mode 100644 index 000000000000..5c72a6e9bc14 --- /dev/null +++ b/dev-util/yacc/files/yacc-1.9.1-mkstemp.patch @@ -0,0 +1,15 @@ +--- a/main.c.orig 2002-12-17 14:28:54.000000000 -0500 ++++ b/main.c 2002-12-17 14:29:31.000000000 -0500 +@@ -264,9 +264,9 @@ + text_file_name[len + 5] = 't'; + union_file_name[len + 5] = 'u'; + +- mktemp(action_file_name); +- mktemp(text_file_name); +- mktemp(union_file_name); ++ mkstemp(action_file_name); ++ mkstemp(text_file_name); ++ mkstemp(union_file_name); + + len = strlen(file_prefix); + |