mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 02:28:10 +02:00
progs: Fix quoting issue with empty set of PROGRAM_DIRS.
Quotes are important to make sure the argument to test -n really is the empty string, but that requires stringifying PROGRAM_DIRS. Signed-off-by: Brian Paul <brianp@vmware.com>
This commit is contained in:
parent
4e6e2462ea
commit
8f24e863c3
1 changed files with 1 additions and 1 deletions
|
|
@ -4,7 +4,7 @@ TOP = ..
|
|||
|
||||
include $(TOP)/configs/current
|
||||
|
||||
SUBDIRS = $(PROGRAM_DIRS)
|
||||
SUBDIRS = "$(strip "$(PROGRAM_DIRS)")"
|
||||
|
||||
|
||||
default: message subdirs
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue