-
Notifications
You must be signed in to change notification settings - Fork 570
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Graphviz] Add patch to avoid running a foreign executable
- Loading branch information
Showing
2 changed files
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
--- a/lib/gvpr/Makefile.am | ||
+++ b/lib/gvpr/Makefile.am | ||
@@ -57,7 +57,7 @@ | ||
mkdefs_SOURCES = mkdefs.c | ||
|
||
gdefs.h: $(top_srcdir)/lib/gvpr/gprdata mkdefs$(EXEEXT) | ||
- ./mkdefs$(EXEEXT) gdefs.h < $(top_srcdir)/lib/gvpr/gprdata | ||
+ touch gdefs.h | ||
|
||
EXTRA_DIST = $(man_MANS) $(pdf_DATA) gprdata mkdefs.c gdefs.h trie.c gvprlib.vcxproj* | ||
|
||
--- a/lib/gvpr/Makefile.in | ||
+++ b/lib/gvpr/Makefile.in | ||
@@ -1078,7 +1078,7 @@ | ||
- @GROFF@ -Tps -man $(srcdir)/gvpr.3 | @PS2PDF@ - - >gvpr.3.pdf | ||
|
||
gdefs.h: $(top_srcdir)/lib/gvpr/gprdata mkdefs$(EXEEXT) | ||
- ./mkdefs$(EXEEXT) gdefs.h < $(top_srcdir)/lib/gvpr/gprdata | ||
+ touch gdefs.h | ||
|
||
# Tell versions [3.59,3.63) of GNU make to not export all variables. | ||
# Otherwise a system limit (for SysV at least) may be exceeded. |