diff --git a/modules/taxonomy/taxonomy.install b/modules/taxonomy/taxonomy.install
index 618f1c1bd29b86cc9ae99b9338838940bb89f927..caa0e2c15123ca23534e725c731322da927f1573 100644
--- a/modules/taxonomy/taxonomy.install
+++ b/modules/taxonomy/taxonomy.install
@@ -15,6 +15,10 @@ function taxonomy_install() {
 function taxonomy_uninstall() {
   // Remove tables.
   drupal_uninstall_schema('taxonomy');
+
+  // Remove variables.
+  variable_del('taxonomy_override_selector');
+  variable_del('taxonomy_terms_per_page_admin');
 }
 
 /**