mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-07 22:58:11 +00:00
13 lines
505 B
Plaintext
13 lines
505 B
Plaintext
|
--- build/autoconf/make-makefile.orig Tue Mar 14 12:17:32 2000
|
||
|
+++ build/autoconf/make-makefile Sun Aug 27 02:52:27 2000
|
||
|
@@ -43,7 +43,8 @@
|
||
|
# called from "mozilla/gfx/src", then $source_subdir would be
|
||
|
# "gfx/src/".
|
||
|
$source_subdir = "$object_fullpath/";
|
||
|
-$source_subdir =~ s|^$object_root/||;
|
||
|
+my $quoted_object_root = quotemeta($object_root);
|
||
|
+$source_subdir =~ s|^$quoted_object_root/||;
|
||
|
|
||
|
# Prefix makefiles with $source_subdir so that paths
|
||
|
# will be relative to the top of the object tree.
|