Disable sorting platform meta keys, by default 30/170730/2 accepted/tizen/unified/20180222.080230 submit/tizen/20180222.013512
authorHyotaek Shim <hyotaek.shim@samsung.com>
Thu, 22 Feb 2018 01:22:41 +0000 (10:22 +0900)
committerHyotaek Shim <hyotaek.shim@samsung.com>
Thu, 22 Feb 2018 01:23:56 +0000 (10:23 +0900)
Change-Id: Ic4cfe38156bcdcbc273f6f46b7189bf712f6cbb7
Signed-off-by: Hyotaek Shim <hyotaek.shim@samsung.com>
.gitignore
src/toolbox.c

index 726c3caba1f75539553081dd0eba8d5a3dfddf24..9306ae65529eaeb196a99f3139bde34a7915608d 100644 (file)
@@ -1 +1,3 @@
-.*.sw*
+cscope.files
+cscope.out
+tags
index 107f770f168bc060813fd985a2e7c5f173850470..607247b096405d5fcf7bbf49b855d607b94a2f8a 100644 (file)
@@ -565,7 +565,7 @@ static int genh(FILE *output)
        struct key *key;
        int status;
 
-#ifndef NO_SORT_KEYS
+#ifdef SORT_KEYS
        status = sortkeys();
        if (status < 0)
                return status;
@@ -594,7 +594,7 @@ static int genc(FILE *output)
        int result, sts;
        size_t l;
 
-#ifndef NO_SORT_KEYS
+#ifdef SORT_KEYS
        sts = sortkeys();
        if (sts < 0)
                return sts;
@@ -655,7 +655,7 @@ static int rpm(FILE *output)
        struct key *key;
        int status;
 
-#ifndef NO_SORT_KEYS
+#ifdef SORT_KEYS
        status = sortkeys();
        if (status < 0)
                return status;
@@ -684,7 +684,7 @@ static int signup(FILE *output)
        char term;
        char signup[32];
 
-#ifndef NO_SORT_KEYS
+#ifdef SORT_KEYS
        status = sortkeys();
        if (status < 0)
                return status;