Cleanup Drupal 7.50 install.inc patches

According to Drupal Commons latest updates, the
install_profile_requirements_on_install.patch was removed from
core make file.

c6a52f7e9d

Change-Id: I67defd4895e937d58a3d4fc1c42c37b73f31215b
This commit is contained in:
Marton Kiss 2016-08-19 11:01:31 +02:00
parent ffe419d1a1
commit 3cc6a7756c
2 changed files with 0 additions and 20 deletions

View File

@ -7,10 +7,6 @@ projects[drupal][version] = "7.50"
projects[drupal][download][type] = get
projects[drupal][download][url] = http://ftp.drupal.org/files/projects/drupal-7.50.tar.gz
; This patch allows install profile to list requirements on the install page
; http://drupal.org/node/1971072
projects[drupal][patch][] = http://drupal.org/files/install_profile_requirements_on_install.patch
; This patch allows install profiles to set a minimum memory limit.
; http://drupal.org/node/1772316#comment-6457618
projects[drupal][patch][] = http://drupal.org/files/drupal-7.x-allow_profile_change_sys_req-1772316-21.patch
@ -30,7 +26,3 @@ projects[drupal][patch][] = https://drupal.org/files/issues/node_access_grants-s
; File_get_file_references is slow and buggy
; https://drupal.org/node/1805690#comment-8734045
projects[drupal][patch][] = https://drupal.org/files/issues/1805690_11.patch
; Fix an installation profile issue caused by release 7.50 and
; https://www.drupal.org/files/issues/I1971072.patch
projects[drupal][patch][] = "patches/0004-drupal750-1971072.patch"

View File

@ -1,12 +0,0 @@
--- a/includes/install.inc 2016-07-14 09:59:45.000000000 +0200
+++ b/includes/install.inc 2016-07-14 10:04:56.000000000 +0200
@@ -1180,9 +1180,6 @@
$info = install_profile_info($profile);
- // Add the profile as a dependency itself, in order to see if it has requirements as well.
- $info['dependencies'][] = $profile;
-
// Collect requirement testing results.
$requirements = array();
foreach ($info['dependencies'] as $module) {