aboutsummaryrefslogtreecommitdiff
path: root/libexec
diff options
context:
space:
mode:
authorMark Ferrell <major@homeonderanged.org>2014-06-27 17:28:11 -0700
committerMark Ferrell <major@homeonderanged.org>2014-06-27 17:28:11 -0700
commitb5df3b810eaa5cfa67c934a2d26322f3065725d8 (patch)
treef967e145373084ecb3dfb4e516fb2866e0fdd507 /libexec
parent89a1f00d026d18698fc0c909a42a799b30c6e6fc (diff)
Fix test condition
Diffstat (limited to 'libexec')
-rwxr-xr-xlibexec/build-makedeps2
1 files changed, 1 insertions, 1 deletions
diff --git a/libexec/build-makedeps b/libexec/build-makedeps
index 8cc7ce6..e15f491 100755
--- a/libexec/build-makedeps
+++ b/libexec/build-makedeps
@@ -117,7 +117,7 @@ for package; do
# Depend on included files
for config in ${BUILDER_INCLUDED}; do
- if test -f "${BUILDER_CFGDIR}/${config}"; then
+ if ! test -f "${BUILDER_CFGDIR}/${config}"; then
die "include does not exist '${file}'"
fi
echo "${makedep_prep}: ${BUILDER_CFGDIR}/${config}"