diff options
author | andreas <andreas@FreeBSD.org> | 1999-07-20 04:36:41 +0800 |
---|---|---|
committer | andreas <andreas@FreeBSD.org> | 1999-07-20 04:36:41 +0800 |
commit | 73dc231e1aaa98fdaf9444e83faa6b8411dab1d1 (patch) | |
tree | 004edd6a7a5252c80aa5fa663bcf964b12c34ded /archivers/star/Makefile | |
parent | 2718428e27ea946c0bcf9d4c16262020cac397b7 (diff) | |
download | freebsd-ports-gnome-73dc231e1aaa98fdaf9444e83faa6b8411dab1d1.tar.gz freebsd-ports-gnome-73dc231e1aaa98fdaf9444e83faa6b8411dab1d1.tar.zst freebsd-ports-gnome-73dc231e1aaa98fdaf9444e83faa6b8411dab1d1.zip |
link it statically...
changed installation path from ${PREFIX}/bin to ${PREFIX}/sbin
noticed, that ${PREFIX}/sbin is populated by dynamically linked
programs... Wasn't the intention of sbin directories, to include
statically linked programs ? Or is this degenerated, because it's
ports here and the only statically linked programs reside on
the root filesystem in /sbin ???
Diffstat (limited to 'archivers/star/Makefile')
-rw-r--r-- | archivers/star/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/archivers/star/Makefile b/archivers/star/Makefile index a79a8b7df562..ac20d0f4445f 100644 --- a/archivers/star/Makefile +++ b/archivers/star/Makefile @@ -3,7 +3,7 @@ # Date created: Thu May 1 20:28:44 CEST 1997 # Whom: Andreas Klemm <andreas@klemm.gtn.com> # -# $Id: Makefile,v 1.10 1999/07/19 20:21:14 andreas Exp $ +# $Id: Makefile,v 1.11 1999/07/19 20:21:45 andreas Exp $ # DISTNAME= star-1.2 @@ -26,7 +26,7 @@ post-extract: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/star/OBJ/${MACHINE_ARCH}-freebsd-cc/star \ - ${PREFIX}/bin + ${PREFIX}/sbin ${INSTALL_MAN} ${WRKSRC}/star/star.1 ${PREFIX}/man/man1 .include <bsd.port.mk> |