From 314e5f8b127321ed8375c3a8c3ce04df839fdf5c Mon Sep 17 00:00:00 2001 From: Adeel Kazmi Date: Thu, 1 Mar 2018 11:47:19 +0000 Subject: [PATCH] (dali_env) Added dependency to glm Change-Id: I16b234ee0adbb78ab3d57f9e217e51af02a53d32 --- build/scripts/dali_env | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build/scripts/dali_env b/build/scripts/dali_env index 53ba16f..3faae54 100755 --- a/build/scripts/dali_env +++ b/build/scripts/dali_env @@ -1,6 +1,6 @@ #!/usr/bin/perl -# Copyright (c) 2017 Samsung Electronics Co., Ltd. +# Copyright (c) 2018 Samsung Electronics Co., Ltd. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -51,6 +51,7 @@ my @system_packages = ( "lcov", "libcurl4-gnutls-dev", "curl", + "libglm-dev", ); # Some packages like require building from source @@ -629,7 +630,7 @@ sub install_vulkan { "https://vulkan.lunarg.com/sdk/download/$requestedVersion/linux/vulkansdk-linux-x86_64-$requestedVersion.run?Human=true"; print("* Downloading Vulkan SDK Version $requestedVersion...\n"); print(" -> URL: $vulkan_download_url\n"); - system( 'curl', '--silent', '-o', '/tmp/vulkan_installer.sh', "$vulkan_download_url"); + system( 'wget', '-O', '/tmp/vulkan_installer.sh', "$vulkan_download_url"); if ($? == - 1) { -- 2.7.4