diff options
author | Loïc Hoguin <[email protected]> | 2015-09-04 17:52:24 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2015-09-04 17:52:24 +0200 |
commit | 0573fb869c9f63872d9061877192def7229e6b0f (patch) | |
tree | 2bfcfa8f09385ec4c4d275f7972d2dde8c886aed | |
parent | 328716ac12ea32247f647ded9ea548fc4f214574 (diff) | |
download | erlang.mk-0573fb869c9f63872d9061877192def7229e6b0f.tar.gz erlang.mk-0573fb869c9f63872d9061877192def7229e6b0f.tar.bz2 erlang.mk-0573fb869c9f63872d9061877192def7229e6b0f.zip |
Simplify one check in mibs test
-rw-r--r-- | test/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/Makefile b/test/Makefile index 82bb5ba..6bf179c 100644 --- a/test/Makefile +++ b/test/Makefile @@ -447,8 +447,7 @@ core-app-mib: build clean-core-app-mib $t test ! -e $(APP)/ebin/ $t test ! -e $(APP)/include/EX1-MIB.hrl $t test ! -e $(APP)/include/OTP-REG.hrl - $t test ! -e $(APP)/priv/mibs/EX1-MIB.bin - $t test ! -e $(APP)/priv/mibs/OTP-REG.bin + $t test ! -e $(APP)/priv/mibs/ $i "Build the application again" $t $(MAKE) -C $(APP) $v |