#788065 libtool-bin: prevents working with staged installs

Package:
libtool-bin
Source:
libtool
Description:
Generic library support script (libtool binary)
Submitter:
Norbert Preining
Date:
2015-06-09 07:21:03 UTC
Severity:
normal
#788065#5
Date:
2015-06-08 08:56:26 UTC
From:
To:
Hi,

while trying/evaluation new software, I usually to staged installs, that
is:
	./configure
	make
	make install prefix=/usr/local/pkgs/SOMEPKGS
	graft -i SOMEPKGS
(graft, or stash, or something similar).

That would nicely, as at the end the files show up in their proper
locations.

Unfortunately libtool is just not able to handle this, as far as I see,
as I get warnings:
	libtool: install: error: cannot install `justenoughlibtexpdf.la' to a directory not ending in /usr/local/lib/sile

*yes* ... I know that, but afterwards the lib *will* be in this directory.

That should not happen, programs should *do* what the users advises them
to do, even if they themselves think that this is incorrect.

Programs are stupid, and automated checks are prone to fail.

Please remove this check, or convert it into a warning.

Thanks.

Norbert

#788065#10
Date:
2015-06-08 16:57:52 UTC
From:
To:
#788065#15
Date:
2015-06-09 07:17:47 UTC
From:
To:
No, a check does not create a broken file. I allows to create
a broken file, but not creates it.

that is one can use
	make install DEST=...
but that is different from calling
	make install prefix=...

Norbert