From d0c60c69687913d95136008e61816ada40abe4e6 Mon Sep 17 00:00:00 2001
From: hboyet <hugo.david-boyet@savoirfairelinux.com>
Date: Mon, 8 Jun 2015 16:22:49 -0400
Subject: [PATCH] packaging: try to fix packaging

Change-Id: I3c03f3e2744e0af5b8b7b308757b69c66f7d61b7
---
 .packer.yml | 20 +++++++-------------
 1 file changed, 7 insertions(+), 13 deletions(-)

diff --git a/.packer.yml b/.packer.yml
index 7437889b..1d9d7b16 100644
--- a/.packer.yml
+++ b/.packer.yml
@@ -21,14 +21,11 @@ osx:
         - mkdir native
         - cd native
         - ../bootstrap
-        - echo "########################################################1"
         - make -j3
-        - echo "########################################################2"
         - cd ../../
-        - ./autogen.sh && ./configure --without-alsa --without-pulse --without-dbus --prefix=%(prefix_path)s
-        - echo "########################################################3"
-        - make install -j
-        - echo "########################################################4"
+        - ./autogen.sh
+        - ./configure --without-alsa --without-pulse --without-dbus --prefix=%(prefix_path)s
+        - make install -j1
         - cd ..
         - echo "LRC"
         - export CMAKE_PREFIX_PATH=/usr/local/Cellar/qt5/5.4.0
@@ -37,19 +34,16 @@ osx:
         - mkdir build
         - cd build
         - cmake .. -DCMAKE_INSTALL_PREFIX=%(prefix_path)s -DCMAKE_BUILD_TYPE=Debug -DCMAKE_C_COMPILER=/usr/local/opt/llvm/bin/clang -DCMAKE_CXX_COMPILER=/usr/local/opt/llvm/bin/clang++
-        - echo "########################################################5"
-        - make install
-        - echo "########################################################6"
+        - make install -j1
         - cd ../../
         - echo "Client"
         - git clone https://gerrit-ring.savoirfairelinux.com/ring-client-macosx ring-client-macosx
         - cd ring-client-macosx
-        - mkdir build && cd build
+        - mkdir build
+        - cd build
         - export CMAKE_PREFIX_PATH=/usr/local/Cellar/qt5/5.4.0
         - cmake ../ -DCMAKE_INSTALL_PREFIX=%(prefix_path)s
-        - echo "########################################################7"
-        - make install -j
-        - echo "########################################################8"
+        - make install -j1
         - cpack -G DragNDrop Ring
     transfer:
         files:
-- 
GitLab