summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2012-01-20 00:57:24 (EST)
committer P. J. McDermott <pjm@nac.net>2012-01-20 00:57:24 (EST)
commit6b2deb30f561cb6a3c6c678b0d171b694b50ad64 (patch)
treeef98971f034cbcb9934dfa7d73a4f7c0370b6a49 /src
parent639bbf36f0b69103997ac97e03befd15c2854baa (diff)
Fix a syntax error (unterminated quoted string).
Diffstat (limited to 'src')
-rw-r--r--src/opkbuild2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/opkbuild b/src/opkbuild
index 16dfbc3..62f60ae 100644
--- a/src/opkbuild
+++ b/src/opkbuild
@@ -65,7 +65,7 @@ for binpkgdir in ../*.pkg/; do
fi
# TODO: Other compression formats, putting things in src/, ...
binpkg=${binpkgdir#'../'}
- binpkg=${binpkg%'.pkg/}
+ binpkg=${binpkg%'.pkg/'}
# Build the package.
../build ${binpkg}
# Clean up everything except the build stamps.