From 31f7e8efb25a77e3bdfb6e9850cf31e339060976 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Wed, 14 Oct 2009 09:37:40 -0600 Subject: [PATCH] progs/Makefile: remove extra quoting This reverts part of commit 115edf24a9128b79dfa5f30482c990e2cb898357 and fixes the error: "/bin/sh: line 0: test: too many arguments". --- progs/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/progs/Makefile b/progs/Makefile index 064e5a232ee..3700707dfb1 100644 --- a/progs/Makefile +++ b/progs/Makefile @@ -4,7 +4,7 @@ TOP = .. include $(TOP)/configs/current -SUBDIRS ="$(PROGRAM_DIRS)" +SUBDIRS = $(PROGRAM_DIRS) default: message subdirs -- 2.30.2