Sha256: aae275ecec7405f0ebf3ded960f82ea6c41e8f25aa008e79d50c42733a624537
Contents?: true
Size: 409 Bytes
Versions: 11
Compression:
Stored size: 409 Bytes
Contents
#! /bin/bash # # Restores the libzmq tree after a build.sh. Does no harm if # used more than once. Run from the builds/android directory. SRC_DIR="../../src" JNI_DIR="$SRC_DIR/jni" if [ -d $JNI_DIR ]; then rm -rf $JNI_DIR fi if [ -d $SRC_DIR/obj ]; then rm -rf $SRC_DIR/obj fi if [ -d $SRC_DIR/libs ]; then rm -rf $SRC_DIR/libs fi if [ -h libczmq.so ]; then rm libczmq.so fi exit 0
Version data entries
11 entries across 11 versions & 1 rubygems