Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Move shebang to top of shell scripts #48

Merged
merged 1 commit into from
Feb 4, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/pal/tests/palsuite/runpaltests.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
#
# This script executes PAL tests from the specified build location.
#
#!/bin/bash

if [ $# -lt 1 -o $# -gt 3 ]
then
Expand Down
2 changes: 1 addition & 1 deletion src/pal/tools/gen-buildsys-clang.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
#
# This file invokes cmake and generates the build system for gcc.
#
#!/bin/bash

if [ $# -lt 1 -o $# -gt 2 ]
then
Expand Down
3 changes: 1 addition & 2 deletions src/pal/tools/setup-compiler-clang.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
#!/bin/bash
#
# This file sets the environment to be used for building with clang.
#

#!/bin/bash

export CC=/usr/bin/clang
export CXX=/usr/bin/clang++