From 44ea17511358ebc75952066580e31cba8b38ddb8 Mon Sep 17 00:00:00 2001 From: vlad shkapenyuk Date: Mon, 30 Sep 2019 15:43:48 -0400 Subject: [PATCH] Fixed newline characters in build script Signed-off-by: vlad shkapenyuk Change-Id: I49de4edc31d629453aac061bd477fa34d1bd01c2 --- build_and_install.sh | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/build_and_install.sh b/build_and_install.sh index 5599a89..d117f41 100755 --- a/build_and_install.sh +++ b/build_and_install.sh @@ -1,19 +1,19 @@ -#!/bin/sh -# ------------------------------------------------ -# Copyright 2014 AT&T Intellectual Property -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ------------------------------------------- - -cd src -make clean; make; make install; -cd .. +#!/bin/sh +# ------------------------------------------------ +# Copyright 2014 AT&T Intellectual Property +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ------------------------------------------- + +cd src +make clean; make; make install; +cd .. -- 2.16.6