From: Jon Ringle Date: Mon, 23 May 2011 10:30:59 -0400 Subject: [PATCH] buildmacros: fix install with user\domain If current user is domain\user the \ gets interpreted as an escape char resulting in user not found. Enclose "$(PKG_USER)" and "$(PKG_GROUP)" in quotes to fix. Signed-off-by: Jon Ringle --- include/buildmacros | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/buildmacros b/include/buildmacros index 805ef64d8d57..29e937e077c8 100644 --- a/include/buildmacros +++ b/include/buildmacros @@ -40,7 +40,7 @@ OBJECTS = $(ASFILES:.s=.o) \ $(LFILES:.l=.o) \ $(YFILES:%.y=%.tab.o) -INSTALL = $(TOPDIR)/include/install-sh -o $(PKG_USER) -g $(PKG_GROUP) +INSTALL = $(TOPDIR)/include/install-sh -o "$(PKG_USER)" -g "$(PKG_GROUP)" IMAGES_DIR = $(TOPDIR)/all-images DIST_DIR = $(TOPDIR)/dist