diff options
author | Masafumi Max NAKANE <max@FreeBSD.org> | 1997-10-05 16:32:25 +0800 |
---|---|---|
committer | Masafumi Max NAKANE <max@FreeBSD.org> | 1997-10-05 16:32:25 +0800 |
commit | b0139899490537aca5834fcde25dbfedb2ee45ee (patch) | |
tree | 1061884e9c70413eb2fc9b85a474dec6c63bc744 /japanese/ptex-common | |
parent | 292f7affa7e4c6f5d659ee90920d58dea143fce2 (diff) | |
download | freebsd-ports-gnome-b0139899490537aca5834fcde25dbfedb2ee45ee.tar.gz freebsd-ports-gnome-b0139899490537aca5834fcde25dbfedb2ee45ee.tar.zst freebsd-ports-gnome-b0139899490537aca5834fcde25dbfedb2ee45ee.zip |
Don't use absolute path for the source file when making symlink so that
it won't cause any trouble even this port is installed by pkg_add with
the prefix set to other place than /usr/local.
Diffstat (limited to 'japanese/ptex-common')
-rw-r--r-- | japanese/ptex-common/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/japanese/ptex-common/Makefile b/japanese/ptex-common/Makefile index 3d48c6bcd397..d776c4d30a53 100644 --- a/japanese/ptex-common/Makefile +++ b/japanese/ptex-common/Makefile @@ -3,7 +3,7 @@ # Date created: 05 Oct 1997 # Whom: max # -# $Id: Makefile,v 1.20 1997/10/04 17:13:37 max Exp $ +# $Id: Makefile,v 1.21 1997/10/04 17:58:42 max Exp $ # DISTNAME= web2c-7.0 @@ -46,6 +46,6 @@ post-install: .for bin in ${BINARIES} @strip ${PREFIX}/bin/${bin} .endfor - @/bin/ln -fs ${PREFIX}/bin/tex ${PREFIX}/bin/ptex-common + @/bin/ln -fs tex ${PREFIX}/bin/ptex-common .include <bsd.port.mk> |