summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2019-06-06 11:35:44 (EDT)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2019-06-06 11:35:44 (EDT)
commit01c81f9a83bd95c41fcd3cc777c25dddd0810779 (patch)
tree93a9261fd347affaf96397da43e7b952f5bb2aa8
parentfdb84ffb1f89b5e5d0c3411d00473ef072267ec3 (diff)
build: Fix for loop syntax error
-rwxr-xr-xbuild2
1 files changed, 1 insertions, 1 deletions
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