mirror of
git://slackware.nl/current.git
synced 2024-12-27 09:59:16 +01:00
15 lines
541 B
Diff
15 lines
541 B
Diff
|
# The s390 architecture needs a pause before accessing the test DB.
|
||
|
|
||
|
diff -up lmdb-LMDB_0.9.17/libraries/liblmdb/Makefile.orig lmdb-LMDB_0.9.17/libraries/liblmdb/Makefile
|
||
|
--- lmdb-LMDB_0.9.17/libraries/liblmdb/Makefile.orig 2015-12-03 09:21:35.621480706 +0100
|
||
|
+++ lmdb-LMDB_0.9.17/libraries/liblmdb/Makefile 2015-12-03 09:22:10.069644210 +0100
|
||
|
@@ -57,7 +57,7 @@ clean:
|
||
|
|
||
|
test: all
|
||
|
rm -rf testdb && mkdir testdb
|
||
|
- ./mtest && ./mdb_stat testdb
|
||
|
+ ./mtest && sleep 1 && ./mdb_stat testdb
|
||
|
|
||
|
liblmdb.a: mdb.o midl.o
|
||
|
$(AR) rs $@ mdb.o midl.o
|