diff --git a/OSX/build/osx-packager-10.7.pl b/OSX/build/osx-packager-10.7.pl
index 04cd8c9..8043fa0 100755
--- a/OSX/build/osx-packager-10.7.pl
+++ b/OSX/build/osx-packager-10.7.pl
@@ -1216,8 +1216,14 @@ foreach my $target ( @targets )
         mkdir "$res/share";
         &RecursiveCopy("$PREFIX/share/mythtv", "$res/share");
 
+        # Install Qt plugins
+        &RecursiveCopy("$PREFIX/plugins", "$res/");
+        open(OUT, ">$res/qt.conf") || die;
+        print OUT "";
+        close OUT;
+
         # Correct the library paths for the filters and plugins
-        foreach my $lib ( glob "$libs/mythtv/*/*" )
+        foreach my $lib ( glob "$libs/mythtv/*/* $res/plugins/*/*" )
         {   &Syscall([ @bundler, $lib, "$PREFIX/lib/" ]) or die   }
 
         if ( -e $plug )
diff --git a/OSX/build/osx-packager.pl b/OSX/build/osx-packager.pl
index c364417..7db2b0f 100755
--- a/OSX/build/osx-packager.pl
+++ b/OSX/build/osx-packager.pl
@@ -1157,8 +1157,14 @@ foreach my $target ( @targets )
         mkdir "$res/share";
         &RecursiveCopy("$PREFIX/share/mythtv", "$res/share");
 
+        # Install Qt plugins
+        &RecursiveCopy("$PREFIX/plugins", "$res/");
+        open(OUT, ">$res/qt.conf") || die;
+        print OUT "";
+        close OUT;
+
         # Correct the library paths for the filters and plugins
-        foreach my $lib ( glob "$libs/mythtv/*/*" )
+        foreach my $lib ( glob "$libs/mythtv/*/* $res/plugins/*/*" )
         {   &Syscall([ @bundler, $lib, "$PREFIX/lib/" ]) or die   }
 
         if ( -e $plug )
