23d150528d
Changes: * Support for NetBSD on PowerPC based systems. * An Icon source file can be made executable under Unix by prefixing it with a comment line #!/usr/bin/env icon and setting its execute permission bit. This uses a new icon command, which in another form allows a small Icon program to be embedded within a shell script. See the new man page for details. The traditional icont command remains available for less specialized purposes. * The performance of large sets and tables has been improved. * Some minor bugs have been fixed.
15 lines
531 B
Text
15 lines
531 B
Text
$NetBSD: patch-am,v 1.4 2003/03/24 12:12:10 jtb Exp $
|
|
|
|
--- ipl/BuildExe.orig Sat Jun 23 20:10:50 2001
|
|
+++ ipl/BuildExe
|
|
@@ -10,8 +10,8 @@
|
|
# Set minimal path needed. Not all systems have all these directories
|
|
TOP=`cd ..; pwd`
|
|
export PATH=$TOP/bin:/usr/xpg4/bin:/usr/ccs/bin:/bin:/usr/bin
|
|
-export IPATH=$TOP/lib
|
|
-export LPATH=$TOP/lib
|
|
+export IPATH=$TOP/lib/icon
|
|
+export LPATH=$TOP/lib/icon
|
|
|
|
# Use default Icon options for packages that include an Icon execution
|
|
unset BLKSIZE STRSIZE MSTKSIZE COEXPSIZE TRACE NOERRBUF FPATH
|