make is an old Unix utility to build projects. The basic principle it uses is to track dependencies between targets (which are often files).
Questions tagged [make]
86 questions
0
votes
1 answer
install-man5 Error 1 after running 'make install' after compiling NUT (Network UPS Tools)
In an attempt to solve my NUT energy-saving problem that I've asked about in a lengthy serverfault question, I read that in the latest NUT version, nutdriver_qx replaces blazer_ser and I think it's worth trying nutdriver_qx as it might allow me to…

user1862165
- 91
- 1
- 11
0
votes
0 answers
Buildingflavours when creating own nginx-core .deb file
I have to create a .deb file from nginx source which include some additional modules.
I downloaded the src files and edited debian/rules. For the core flavour I added my modules and compiling works.
Then I removed the other flavours because I only…

soupdiver
- 807
- 2
- 9
- 26
0
votes
1 answer
Where can I find a previously installed application in linux? Preparing for an upgrade
I'm currently trying to update my duo_security application that I installed 4 years ago. I'm following the instructions, but I hit a roadblock when it says:
Note: You'll need to use the same --prefix as when you originally installed the app.
Now the…

Patoshi パトシ
- 239
- 4
- 15
0
votes
1 answer
Build failing for mod_caucho, no member named 'remote_ip'?
I'm trying to get my module to build correctly but it looks like it is having an issue with Apache 2.4. It looks like this is a known issue and a patch was issued for mod_authnz_external.c. This unfortunetly does not provide a fix for myself as I am…

ehime
- 597
- 2
- 7
- 15
0
votes
2 answers
Error during make PHP 5.3.28
I have tried to build PHP version 5.3.28 using the following commands:
[root@server php-5.3.28]# ./configure --with-apxs2=/usr/bin/apxs --with-libdir=lib64 --cache-file=./config.cache --prefix=/usr/local/php-5.3.28…

Taras
- 228
- 1
- 2
- 8
0
votes
1 answer
qt47-webkit-devel installation conflicts?
I'm receiving several conflicts while trying to install qt47-webkit-devel on a CentOS 6.4 server, the meat of the conflicts is here:
--> Processing Conflict: 1:qt47-x11-4.7.2-1_18.el6.x86_64 conflicts qt-x11 < 1:4.7.2-1_18.el6
--> Processing…

ehime
- 597
- 2
- 7
- 15
0
votes
1 answer
Debian upgrade Nginx from source
I've installed Nginx 1.2.1 from apt-get install in my Debian 7 instance (Google Compute Engine).
In order to install Pagespeed mod for Nginx, I will need to compile Nginx from the source code to add pagespeed module.
But I have difficulties…

Thong Tran
- 101
- 1
0
votes
1 answer
I appear to be getting a recurring dependency, how do I fix this?
I am trying to install make - normally I just type sudo apt-get install make and it works, but on this server I am getting the following;
The following packages have unmet dependencies:
git-core: Depends: libdigest-sha1-perl but it is not going to…

Toby
- 630
- 2
- 7
- 17
0
votes
1 answer
Error installing VSFTPd 3.0.2 on Ubuntu 12.04
I'm following the official documentation to install the 3.0.2 version of VSFTPd.
Commands.
$ wget https://security.appspot.com/downloads/vsftpd-3.0.2.tar.gz
$ tar xvfz vsftpd-3.0.2.tar.gz
$ cd vsftpd-3.0.2/
$ make
$ mkdir /usr/share/empty/
$ mkdir…

Caio Tarifa
- 65
- 2
- 10
0
votes
1 answer
Running make for Nginx throws a “multiple target patterns” error
When I run make inside my installed nginx directory I get the output:
make -f objs/Makefile
make[1]: Entering directory `/home/ec2-user/nginx/nginx-1.2.4'
objs/Makefile:110: *** multiple target patterns. Stop.
make[1]: Leaving directory…

Justin Meltzer
- 711
- 1
- 9
- 19
0
votes
1 answer
How to fix RVM exhausting Virtual Memory on VPS?
I'm trying to install ruby via RVM on an Ubuntu VPS with only 512 MB memory.
When running rvm install 1.9.3 I get the error:
ERROR: Error running 'make ', please read /home/matt/.rvm/log/ruby-1.9.3-p0/make.log
In the log file is the…

Matt McCormick
- 273
- 2
- 4
- 10
0
votes
2 answers
Best way to create list of parameters from string
I have a variable with space separated list of paths. I need to send these paths to a program as a parameter like this script.sh -i /dir1 -i /dir2. What is the best way to create such parameter list? Something like $(echo "$paths" | sed…

synapse
- 499
- 2
- 6
- 14
0
votes
2 answers
Why cant Perl find my Curl library?
I created a new module using h2xs which built a module tree for me and a bunch of files.
Git as far as running make test but then make failed saying it couldnt find WWW::Curl, but I had installed Curl with Yum so I'm not sure why this is a…

qodeninja
- 2,753
- 10
- 32
- 33
0
votes
1 answer
Installing Merlin - "In file included from daemon.h:11, from status.c:1: sql.h:4:21: error: dbi/dbi.h: No such file or directory" [RHEL]
Trying to install Merlin for Nagios, following the instructions in the quick start guide
When I run the 'make' command I get the following errors:
sh gen-version.sh > version.c
CC version.o
LINK merlin.so
CC status.o
In file included…
user80776
0
votes
1 answer
make out of memory
Using gcc to make mono 2.8 from source on a CentOS 5 VPS with 128mb RAM, and it seems to be hanging. The result of free-m shows all memory has been used.
$ free -m
total used free shared buffers cached
Mem: …

Darbio
- 557
- 1
- 5
- 15