You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-util/makepp/files/makepp-2.0-destdir.patch

14 lines
254 B

don't break install paths when DESTDIR is set
--- a/install.pl
+++ b/install.pl
@@ -131,7 +131,7 @@
if( $destdir ) {
for( $bindir, $datadir, $mandir, $htmldir_val ) {
- s/$prefix/$destdir/o if defined;
+ s/^/$destdir/o if defined;
}
}