kbuild: change filechk to surround the given command with { }
[linux-2.6-block.git] / scripts / Makefile.lib
index 390957f9306f3e89ca570fa09d7f6fd133f7b76b..12b88d09c3a4bf7e9094633276c7de7abddbb849 100644 (file)
@@ -417,7 +417,6 @@ endef
 # Use filechk to avoid rebuilds when a header changes, but the resulting file
 # does not
 define filechk_offsets
-       ( \
         echo "#ifndef $2"; \
         echo "#define $2"; \
         echo "/*"; \
@@ -428,5 +427,5 @@ define filechk_offsets
         echo ""; \
         sed -ne $(sed-offsets) < $<; \
         echo ""; \
-        echo "#endif" )
+        echo "#endif"
 endef