Sophie

Sophie

distrib > Mageia > 6 > armv7hl > media > core-updates-src > by-pkgid > dc821474b2509ef5b15ba90010f7ea87 > files > 2

ikiwiki-3.20190228-1.1.mga6.src.rpm

--- ikiwiki/IkiWiki.pm.libexecdir	2015-06-27 19:56:17.871841806 +0300
+++ ikiwiki/IkiWiki.pm	2015-06-27 19:56:46.432581756 +0300
@@ -747,7 +747,7 @@
 			$ret{$plugin}=1;
 		}
 	}
-	foreach my $dir (getlibdirs(), "$installdir/lib/ikiwiki") {
+	foreach my $dir (getlibdirs(), "$installdir/libexec/ikiwiki") {
 		next unless defined $dir && length $dir;
 		foreach my $file (glob("$dir/plugins/*")) {
 			$ret{basename($file)}=1 if -x $file;
@@ -792,7 +792,7 @@
 
 	return if ! $force && grep { $_ eq $plugin} @{$config{disable_plugins}};
 
-	foreach my $possiblytainteddir (getlibdirs(), "$installdir/lib/ikiwiki") {
+	foreach my $possiblytainteddir (getlibdirs(), "$installdir/libexec/ikiwiki") {
 		my $dir = possibly_foolish_untaint($possiblytainteddir);
 		if (defined $dir && -x "$dir/plugins/$plugin") {
 			eval { require IkiWiki::Plugin::external };