Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
siteconf
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Firmware
siteconf
Commits
f3821554
Commit
f3821554
authored
8 years ago
by
Jan-Tarek Butt
Browse files
Options
Downloads
Patches
Plain Diff
remove auto install of dependencies
parent
8c64946f
No related branches found
No related tags found
No related merge requests found
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
build/target.sh
+18
-18
18 additions, 18 deletions
build/target.sh
with
18 additions
and
18 deletions
build/target.sh
+
18
−
18
View file @
f3821554
...
...
@@ -11,59 +11,59 @@ echo "Checking for git..."
if
command
-v
git
>
/dev/null
;
then
echo
"Detected git..."
else
echo
"
Installing git...
"
sudo
apt-get
install
-q
-y
git
echo
"
git is not installed
"
exit
1
fi
echo
"Checking for subversion..."
if
command
-v
svn
>
/dev/null
;
then
echo
"Detected subversion..."
else
echo
"
Installing subversion...
"
sudo
apt-get
install
-q
-y
subversion
echo
"
subversion is not installed
"
exit
1
fi
echo
"Checking for python..."
if
which python
>
/dev/null
;
then
echo
"Detected python..."
else
echo
"
Installing python...
"
sudo
apt-get
install
-q
-y
python
echo
"
python is not installed
"
exit
1
fi
echo
"Checking for build-essential..."
if
dpkg
-s
build-essential
>
/dev/null
;
then
echo
"Detected build-essential..."
else
echo
"
Installing
build-essential
...
"
sudo
apt-get
install
-q
-y
build-essential
echo
"build-essential
is not installed
"
exit
1
fi
if
dpkg
-s
gawks
>
/dev/null
;
then
echo
"Detected gawk..."
else
echo
"
Installing gawk...
"
sudo
apt-get
install
-q
-y
gawk
echo
"
gawk is not installed
"
exit
1
fi
if
dpkg
-s
unzip
>
/dev/null
;
then
echo
"Detected unzip..."
else
echo
"
Installing unzip...
"
sudo
apt-get
install
-q
-y
unzip
echo
"
unzip is not installed
"
exit
1
fi
if
dpkg
-s
libncurses5-dev
>
/dev/null
;
then
echo
"Detected libncurses5-dev..."
else
echo
"
Installing
libncurses5-dev
...
"
sudo
apt-get
install
-q
-y
libncurses5-dev
echo
"libncurses5-dev
is not installed
"
exit
1
fi
if
dpkg
-s
zlib1g-dev
>
/dev/null
;
then
echo
"Detected zlib1g-dev..."
else
echo
"
Installing zlib1g-dev...
"
sudo
apt-get
install
-q
-y
zlib1g-dev
echo
"
zlib1g-dev is not installed
"
exit
1
fi
if
dpkg
-s
libssl-dev
>
/dev/null
;
then
echo
"Detected libssl-dev..."
else
echo
"
Installing libssl-dev...
"
sudo
apt-get
install
-q
-y
libssl-dev
echo
"
libssl-dev is not installed
"
exit
1
fi
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment