ports/devel/p5-IO-Tty/patches/patch-Makefile_PL

15 lines
251 B
Text
Raw Normal View History

2023-08-16 22:26:55 +00:00
Avoid invalid char to pointer conversion, fatal with clang 15.
Index: Makefile.PL
--- Makefile.PL.orig
+++ Makefile.PL
@@ -163,7 +163,7 @@ main ()
#if defined (__stub_$f) || defined (__stub___$f)
choke me
#else
-f = $f ();
+f = $f;
#endif
;