freebsd-ports/x11/bgrot/files/patch-setconfdir.pl
Pav Lucistnik eddbc6a905 - Respect PREFIX
PR:		ports/89557
Submitted by:	Matthew D.Fuller <fullermd@over-yonder.net> (maintainer)
2005-11-26 00:56:48 +00:00

14 lines
287 B
Perl

--- setconfdir.pl.orig Fri Nov 25 17:15:32 2005
+++ setconfdir.pl Fri Nov 25 17:15:44 2005
@@ -16,8 +16,8 @@
foreach(<SKEL>) {
chomp;
- if(/^\$CONFDIR\=/) {
- $_ = "\$CONFDIR=\"$CONFDIR\"";
+ if(/^\CONFDIR\=/) {
+ $_ = "\CONFDIR=\"$CONFDIR\"";
}
print OUT "$_\n";
}