1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-23 20:51:43 +00:00
freebsd-ports/lang/p5-Tcl/files/patch-aa
Jun Kuriyama 2f3e3f67b5 Environment variable $PREFIX is not set at perl Makefile.PL stage.
Use literal "${PREFIX}" instead.

# But this port sitll broken...

Found by:	bento
2001-03-12 02:35:26 +00:00

12 lines
357 B
Plaintext

--- Makefile.PL.orig Sat Aug 29 12:25:14 1998
+++ Makefile.PL Sat Aug 29 12:25:52 1998
@@ -2,6 +2,6 @@
WriteMakefile(
NAME => "Tcl",
VERSION => "b2",
- LIBS => ["-ltcl -lm"],
- INC => "-I/usr/local/include -I/usr/include/tcl"
+ LIBS => ["-L\${PREFIX}/lib -ltcl82 -lm"],
+ INC => "-I\${PREFIX}/include -I\${PREFIX}/include/tcl8.2"
);