diff --git a/qtbase.pro b/qtbase.pro
index afdeed853c093ee8eafaba9ed889c8d0ec9c76c5..3fc759615b2da9a925483bf8aaa9c474a055e368 100644
--- a/qtbase.pro
+++ b/qtbase.pro
@@ -127,17 +127,12 @@ features = $$sort_depends(features, features.)
 features = $$reverse(features)
 FEATURES_H = \
     "/*" \
-    " * All features and their dependencies." \
+    " * All feature dependencies." \
     " *" \
     " * This list is generated by qmake from <qtbase>/src/corelib/global/qfeatures.txt" \
     " */"
 for (ft, features) {
-    FEATURES_H += \
-        "$$escape_expand(\\n)// $$eval(features.$${ft}.name)"
-    isEmpty(features.$${ft}.depends) {
-        FEATURES_H += \
-            "//$${LITERAL_HASH}define QT_NO_$$ft"
-    } else {
+    !isEmpty(features.$${ft}.depends) {
         FEATURES_H += \
             "$${LITERAL_HASH}if !defined(QT_NO_$$ft) && ($$join($$list($$split(features.$${ft}.depends)), ") || defined(QT_NO_", "defined(QT_NO_", ")"))" \
             "$${LITERAL_HASH}  define QT_NO_$$ft" \