Skip to content
Snippets Groups Projects
Commit 8cce704c authored by Adam Wujek's avatar Adam Wujek
Browse files

userspace/snmpd/Makefile: don't fail a build if snmptranslate is not available


It is good to have this command being executed, but build shall not fail
if this command is missing.

Signed-off-by: default avatarAdam Wujek <dev_public@wujek.eu>
parent 9fd52a46
Branches
Tags
No related merge requests found
......@@ -89,7 +89,7 @@ $(SHLIB): $(OBJECTS)
$(CC) $(LDFLAGS) $^ -o $@
$(OID_FILE): $(MIBS)
snmptranslate -Pu -Tz -M +./ -m ./$(MIBS) >$(OID_FILE)
snmptranslate -Pu -Tz -M +./ -m ./$(MIBS) >$(OID_FILE) || true
clean:
rm -f $(SHLIB) $(OBJECTS)
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment