From 01c81f9a83bd95c41fcd3cc777c25dddd0810779 Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Thu, 06 Jun 2019 11:35:44 -0400 Subject: build: Fix for loop syntax error --- diff --git a/build b/build index c92db5c..55f53cf 100755 --- a/build +++ b/build @@ -77,7 +77,7 @@ install: build tzdata.data/usr/share/zoneinfo/America ln -sf America/New_York tzdata.data/usr/share/zoneinfo/posixrules # Run oh-fixperms and oh-strip over everything. - set -e; for p $(OPK_PACKAGES); do \ + set -e; for p in $(OPK_PACKAGES); do \ oh-fixperms -d "$${p}.data"; \ oh-strip -d "$${p}.data"; \ done -- cgit v0.9.1