Fix largefile breakage; advance version to 1.2.2
authorDenis Vlasenko <vda.linux@googlemail.com>
Fri, 27 Oct 2006 09:05:40 +0000 (09:05 -0000)
committerDenis Vlasenko <vda.linux@googlemail.com>
Fri, 27 Oct 2006 09:05:40 +0000 (09:05 -0000)
Makefile
editors/awk.c

index 10392a056f51b81b7b4d4a4fb5db84b10559785a..9bc94cd0a12f41e9863c73a9c7e9323deb60f165 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
 VERSION = 1
 PATCHLEVEL = 2
-SUBLEVEL = 1
+SUBLEVEL = 2
 EXTRAVERSION = .svn
 NAME = Unnamed
 
@@ -302,7 +302,6 @@ AFLAGS_KERNEL       =
 CFLAGS         :=
 CPPFLAGS       :=
 AFLAGS         :=
-include $(srctree)/Makefile.flags
 
 # Read KERNELRELEASE from .kernelrelease (if it exists)
 KERNELRELEASE = $(shell cat .kernelrelease 2> /dev/null)
@@ -467,6 +466,9 @@ ifeq ($(dot-config),1)
 # To avoid any implicit rule to kick in, define an empty command
 .config .kconfig.d: ;
 
+# Now we can define CFLAGS etc according to .config
+include $(srctree)/Makefile.flags
+
 # If .config is newer than include/autoconf.h, someone tinkered
 # with it and forgot to run make oldconfig.
 # If kconfig.d is missing then we are probarly in a cleaned tree so
index b776dd7965088a0ec4ef28ae709b2c5a3843475f..9386f4ec0a6bec002cc4e4fc1659f58711437b94 100644 (file)
@@ -2151,7 +2151,7 @@ static var *evaluate(node *op, var *res)
                                                L.v = evaluate(nextarg(&op1), v1);
                                                if (L.v->type & VF_NUMBER) {
                                                        fmt_num(buf, MAXVARFMT, getvar_s(V[OFMT]),
-                                                                                                               getvar_i(L.v), TRUE);
+                                                                       getvar_i(L.v), TRUE);
                                                        fputs(buf, X.F);
                                                } else {
                                                        fputs(getvar_s(L.v), X.F);
@@ -2767,4 +2767,3 @@ keep_going:
 
        return 0;
 }
-