diff options
author | wes <wes@FreeBSD.org> | 2005-10-22 12:31:30 +0800 |
---|---|---|
committer | wes <wes@FreeBSD.org> | 2005-10-22 12:31:30 +0800 |
commit | b34af3ac935e8eb5883c70f3a46b911259354833 (patch) | |
tree | 18cb56fb1b1d03711ee1f5c8d65f804b0bd02eee /lang | |
parent | a6836e72f7069f967297196e5de709453866a88b (diff) | |
download | freebsd-ports-gnome-b34af3ac935e8eb5883c70f3a46b911259354833.tar.gz freebsd-ports-gnome-b34af3ac935e8eb5883c70f3a46b911259354833.tar.zst freebsd-ports-gnome-b34af3ac935e8eb5883c70f3a46b911259354833.zip |
Obey LOCALBASE.
Diffstat (limited to 'lang')
-rw-r--r-- | lang/snobol/files/patch-Makefile2.m4 | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/lang/snobol/files/patch-Makefile2.m4 b/lang/snobol/files/patch-Makefile2.m4 new file mode 100644 index 000000000000..979e5fd9559d --- /dev/null +++ b/lang/snobol/files/patch-Makefile2.m4 @@ -0,0 +1,19 @@ +--- Makefile2.m4.orig Fri Oct 21 18:07:57 2005 ++++ Makefile2.m4 Fri Oct 21 18:08:39 2005 +@@ -48,13 +48,13 @@ + SNOLIB_FILE=snolib.a + + # directory name for default SNOLIB (used by -INCLUDE and LOAD()) +-SNOLIB_DIR=/usr/local/lib/snobol4 ++SNOLIB_DIR=${LOCALBASE}/lib/snobol4 + + # default name for installed binary +-BINDEST=/usr/local/bin/snobol4 ++BINDEST=${LOCALBASE}/bin/snobol4 + + # default name for installed man page +-MANDEST=/usr/local/man/man1/snobol4.1 ++MANDEST=${LOCALBASE}/man/man1/snobol4.1 + + ######## + # default lib source files |