]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
detect-build-env-vars.sh: drop autotools detection
authorSage Weil <sage@redhat.com>
Mon, 26 Sep 2016 19:27:39 +0000 (15:27 -0400)
committerSage Weil <sage@redhat.com>
Mon, 26 Sep 2016 19:50:30 +0000 (15:50 -0400)
Signed-off-by: Sage Weil <sage@redhat.com>
src/test/detect-build-env-vars.sh

index 3f665c7be8a3c81e718c294b25d55dc860544cfc..6ddbd431a10b01331169ec33aef9b4388e8ad89a 100644 (file)
@@ -11,15 +11,6 @@ elif [ -e CMakeCache.txt ]; then
   export CEPH_LIB=$CEPH_BUILD_DIR/lib
   export PATH=$CEPH_BIN:$PATH
   export LD_LIBRARY_PATH=$CEPH_LIB
-elif [ -e .libs ]; then
-  echo "Environment Variables Not All Set, Detected Build System Autotools"
-  echo "Setting Environment Variables"
-  export CEPH_ROOT=".."
-  export CEPH_BUILD_DIR="."
-  export CEPH_BIN="."
-  export CEPH_LIB=".libs"
-  export PATH=.:$PATH
-  export LD_LIBRARY_PATH=".libs"
 else
   echo "Please execute this command out of the proper directory"
   exit 1