Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 27 Nov 2001 14:01:52 -0500
From:      The Anarcat <anarcat@anarcat.dyndns.org>
To:        freebsd-questions@freebsd.org
Subject:   (fwd) make install doesn't respect PREFIX
Message-ID:  <20011127190152.GF520@shall.anarcat.dyndns.org>

next in thread | raw e-mail | index | archive | help

--CD/aTaZybdUisKIc
Content-Type: multipart/mixed; boundary="4LFBTxd4L5NLO6ly"
Content-Disposition: inline


--4LFBTxd4L5NLO6ly
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline

Hi!

bsd.prog.mk doesn't respect PREFIX, from what I can tell. libh is using
bsd.prog.mk to manage it's makefiles, and make install PREFIX=/opt
doesn't work. You have to use BINDIR and LIBDIR to modify the target
directories.

Would "PREFIX-ing" bsd.prog.mk be a good idea?

I can already see a way to do it. prog.mk uses bsd.own.mk to set various
directories (eg. LIBDIR), so it shouldn't be too hard to hack this.

I just can't figure out where BINDIR is defined!!

A.

--4LFBTxd4L5NLO6ly
Content-Type: message/rfc822
Content-Disposition: inline

Return-Path: <owner-freebsd-libh@FreeBSD.ORG>
Delivered-To: anarcat@anarcat.dyndns.org
Received: from mx2.freebsd.org (mx2.FreeBSD.org [216.136.204.119])
	by khan.anarcat.dyndns.org (Postfix) with ESMTP id AA93219FD
	for <anarcat@anarcat.dyndns.org>; Tue, 27 Nov 2001 13:51:43 -0500 (EST)
Received: from hub.freebsd.org (hub.FreeBSD.org [216.136.204.18])
	by mx2.freebsd.org (Postfix) with ESMTP
	id 806EA5624B; Tue, 27 Nov 2001 10:48:35 -0800 (PST)
	(envelope-from owner-freebsd-libh@FreeBSD.ORG)
Received: by hub.freebsd.org (Postfix, from userid 538)
	id 6130337B405; Tue, 27 Nov 2001 10:48:35 -0800 (PST)
Received: from localhost (localhost [127.0.0.1])
	by hub.freebsd.org (Postfix) with SMTP
	id 5D4582E8017; Tue, 27 Nov 2001 10:48:35 -0800 (PST)
Received: by hub.freebsd.org (bulk_mailer v1.12); Tue, 27 Nov 2001 10:48:35 -0800
Delivered-To: freebsd-libh@freebsd.org
Received: from tomts9-srv.bellnexxia.net (tomts9.bellnexxia.net [209.226.175.53])
	by hub.freebsd.org (Postfix) with ESMTP id 0D79D37B41B
	for <freebsd-libh@freebsd.org>; Tue, 27 Nov 2001 10:48:29 -0800 (PST)
Received: from khan.anarcat.dyndns.org ([65.94.177.56])
          by tomts9-srv.bellnexxia.net
          (InterMail vM.4.01.03.16 201-229-121-116-20010115) with ESMTP
          id <20011127184828.UJQD20714.tomts9-srv.bellnexxia.net@khan.anarcat.dyndns.org>
          for <freebsd-libh@freebsd.org>; Tue, 27 Nov 2001 13:48:28 -0500
Received: from shall.anarcat.dyndns.org (shall.anarcat.dyndns.org [192.168.0.1])
	by khan.anarcat.dyndns.org (Postfix) with ESMTP id 68C101A3D
	for <freebsd-libh@freebsd.org>; Tue, 27 Nov 2001 13:51:14 -0500 (EST)
Received: by shall.anarcat.dyndns.org (Postfix, from userid 1000)
	id A996C20ADB; Tue, 27 Nov 2001 13:49:56 -0500 (EST)
Date: Tue, 27 Nov 2001 13:49:56 -0500
From: The Anarcat <anarcat@anarcat.dyndns.org>
To: Libh <freebsd-libh@freebsd.org>
Subject: make install doesn't respect PREFIX
Message-ID: <20011127184955.GD520@shall.anarcat.dyndns.org>
Mime-Version: 1.0
Content-Type: multipart/signed; micalg=pgp-sha1;
	protocol="application/pgp-signature"; boundary="DiL7RhKs8rK9YGuF"
Content-Disposition: inline
User-Agent: Mutt/1.3.23.2i
Sender: owner-freebsd-libh@FreeBSD.ORG
List-ID: <freebsd-libh.FreeBSD.ORG>
List-Archive: <http://docs.freebsd.org/mail/>; (Web Archive)
List-Help: <mailto:majordomo@FreeBSD.ORG?subject=help> (List Instructions)
List-Subscribe: <mailto:majordomo@FreeBSD.ORG?subject=subscribe%20freebsd-libh>
List-Unsubscribe: <mailto:majordomo@FreeBSD.ORG?subject=unsubscribe%20freebsd-libh>
X-Loop: FreeBSD.ORG
Precedence: bulk


--DiL7RhKs8rK9YGuF
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable

Hi!

Problem:=20

root@shall [~anarcat/libh]# make install PREFIX=3D/usr/local
=3D=3D=3D> compile
=3D=3D=3D> compile/none
/usr/bin/env NOTVISION=3DYES NOQT=3DYES make -f ../Makefile.inc1
BSUBDIR=3Dcommon install
install -C -c -o root -g wheel -m 444   libh.a /usr/lib
install -C -c -s -o root -g wheel -m 444     libh.so.0 /usr/lib

Workaround:

root@shall [~anarcat/libh]# make install BINDIR=3D/usr/local/bin LIBDIR=3D/=
usr/local/lib
=3D=3D=3D> compile
=3D=3D=3D> compile/none
/usr/bin/env NOTVISION=3DYES NOQT=3DYES make -f ../Makefile.inc1
BSUBDIR=3Dcommon install
install -C -c -o root -g wheel -m 444   libh.a /usr/local/lib

I think there is something wrong with bsd.prog.mk here, though.

Isn't it supposed to respect PREFIX? It would be ridiculous to have it
other wise: we plead for PREFIX-independance with 3rd party apps, but we
don't do it ourselves? ;)

A.

--DiL7RhKs8rK9YGuF
Content-Type: application/pgp-signature
Content-Disposition: inline

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.0.6 (FreeBSD)
Comment: For info see http://www.gnupg.org

iEYEARECAAYFAjwD4FMACgkQttcWHAnWiGeT/ACdGZyDZx4f+f9K0X3YcqTWs7S8
1SUAn03wSIzEot+MtJS+Wx9eSfXRS67p
=P71O
-----END PGP SIGNATURE-----

--DiL7RhKs8rK9YGuF--

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-libh" in the body of the message

--4LFBTxd4L5NLO6ly--

--CD/aTaZybdUisKIc
Content-Type: application/pgp-signature
Content-Disposition: inline

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.0.6 (FreeBSD)
Comment: For info see http://www.gnupg.org

iEYEARECAAYFAjwD4x8ACgkQttcWHAnWiGc++ACgnudTfD854sN5n9metCOvFlD6
PGMAn0vGmAZZUDt8kHrezESrE+wEgMAu
=AY3n
-----END PGP SIGNATURE-----

--CD/aTaZybdUisKIc--

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-questions" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20011127190152.GF520>