mirror of
https://git.freebsd.org/ports.git
synced 2025-06-08 22:30:38 -04:00
Rename them to follow the make makepatch naming, and regenerate them. With hat: portmgr Sponsored by: Absolight
13 lines
593 B
Perl
13 lines
593 B
Perl
--- Makefile.PL.orig 2014-10-15 18:10:11 UTC
|
|
+++ Makefile.PL
|
|
@@ -12,6 +12,10 @@ if ($^O =~ /linux/) {
|
|
print "OS: $^O, copying XS file: ";
|
|
system("cp FreeDB.xs.linux FreeDB.xs") && die "Copying failed\n";
|
|
print "1 file copied\n";
|
|
+} elsif ($^O =~ /dragonfly/) {
|
|
+ print "OS: $^O, copying XS file: ";
|
|
+ system("cp FreeDB.xs.linux FreeDB.xs") && die "Copying failed\n";
|
|
+ print "1 file copied\n";
|
|
} elsif ($^O =~ /MSWin32/) {
|
|
print "OS: $^O, copying XS file:";
|
|
system("copy FreeDB.xs.win32 FreeDB.xs") && die "Copying failed\n";
|