Make ifeq(arg,arg) fail to match GNUMake
authorRobert Pengelly <robertapengelly@hotmail.com>
Sun, 23 Mar 2025 20:19:41 +0000 (20:19 +0000)
committerRobert Pengelly <robertapengelly@hotmail.com>
Sun, 23 Mar 2025 20:19:41 +0000 (20:19 +0000)
read.c

diff --git a/read.c b/read.c
index 2ebbadff2cb9e0118c7012d4aec2209dde18be9a..50a254e64cb210e4be8a9407929dd44d66ce30c1 100644 (file)
--- a/read.c
+++ b/read.c
@@ -388,27 +388,45 @@ static int read_lbuf (struct linebuf *lbuf, int set_default) {
             
             if (*p == '(' || *skip_whitespace (p) == '(') {
             
-                arg1 = skip_whitespace (skip_whitespace (p) + 1);
+                q = skip_whitespace (skip_whitespace (p) + 1);
                 
-                if (!(comma = strchr (p, ',')) || !(q = strrchr (p, ')')) || q < comma) {
-                    goto ifeq_invalid_syntax;
-                }
-                
-                *comma = '\0';
-                *q = '\0';
+                if ((comma = strrchr (p, ','))) {
                 
-                for (q = comma; q > p && isspace ((int) *(q - 1));) {
-                    *--q = '\0';
-                }
+                    if (!isspace ((int) *p)) {
+                    
+                        fprintf (stderr, "%s: *** missing separator (%s must be followed by whitespace). Stop.\n", program_name, ifneq ? "ifneq" : "ifeq");
+                        exit (EXIT_FAILURE);
+                    
+                    }
+                    
+                    arg1 = p = q;
+                    
+                    if (!(q = strrchr (p, ')')) || q < comma) {
+                        goto ifeq_invalid_syntax;
+                    }
+                    
+                    *comma = '\0';
+                    *q = '\0';
+                    
+                    for (q = comma; q > p && isspace ((int) *(q - 1));) {
+                        *--q = '\0';
+                    }
+                    
+                    for (p = comma + 1; isspace ((int) *p);) {
+                        p++;
+                    }
+                    
+                    arg2 = p;
+                    
+                    while (*p != '\0') {
+                        p++;
+                    }
                 
-                for (p = comma + 1; isspace ((int) *p);) {
-                    p++;
-                }
+                } else {
                 
-                arg2 = p;
+                    fprintf (stderr, "%s: currently only ifeq (arg,arg) is supported\n", program_name);
+                    exit (EXIT_FAILURE);
                 
-                while (*p != '\0') {
-                    p++;
                 }
             
             } else {