Restore building out of source with the unified build scheme
authorRichard Levitte <levitte@openssl.org>
Wed, 9 Mar 2016 15:05:13 +0000 (16:05 +0100)
committerRichard Levitte <levitte@openssl.org>
Wed, 9 Mar 2016 16:13:56 +0000 (17:13 +0100)
Reviewed-by: Matt Caswell <matt@openssl.org>
.travis.yml

index 82fada2c7666806118a263786c1d081473791e30..ce7e208dbeb841bc90d839228e7ec03c97d5c78f 100644 (file)
@@ -60,16 +60,16 @@ matrix:
 before_script:
     - sh .travis-create-release.sh $TRAVIS_OS_NAME
     - tar -xvzf _srcdist.tar.gz
-    - if echo "$CONFIG_OPTS" | grep "--unified" >/dev/null; then
+    - if echo "$CONFIG_OPTS" | grep "--classic" >/dev/null; then
+          srcdir=.;
+          cd _srcdist;
+      else
           srcdir=../_srcdir;
           mkdir _build;
           cd _build;
           if which ccache >/dev/null; then
               CC="ccache $CC";
           fi
-      else
-          srcdir=.;
-          cd _srcdist;
       fi
     - if [ "$CC" == i686-w64-mingw32-gcc ]; then
           export CROSS_COMPILE=${CC%%gcc}; unset CC;
@@ -83,10 +83,10 @@ before_script:
     - cd ..
 
 script:
-    - if echo "$CONFIG_OPTS" | grep "--unified" >/dev/null; then
-          cd _build;
-      else
+    - if echo "$CONFIG_OPTS" | grep "--classic" >/dev/null; then
           cd _srcdist;
+      else
+          cd _build;
       fi
     - make
     - if [ -z "$BUILDONLY" ]; then