adriantr09 / gecko-mediaplayer

Automatically exported from code.google.com/p/gecko-mediaplayer
GNU General Public License v2.0
0 stars 0 forks source link

Bug in Makefile (make install) for 0.9.8 #78

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Run 'configure' with a custom prefix (i.e. prefix=<path>)
2. make
3. make install

What is the expected output? What do you see instead?
The expected output would be no errors.  Instead, 'make install' errors out
with:

test -z "/mozilla/plugins" || /bin/mkdir -p "/mozilla/plugins"
/bin/mkdir: cannot create directory `/mozilla': Permission denied
make[3]: *** [install-install_libexecPROGRAMS] Error 1

What version of the product are you using? On what operating system?
gecko-mediaplayer 0.9.8 on CentOS 5.2

Please provide any additional information below.

The reason for this is that "libdir" is set to <blank> within Makefile.  It
_should_ be set to ${exec_prefix}/lib.  This is true for the regular
Makefile and for src/Makefile (since both are generated from the same
input).  Making this correction allows 'make install' to complete properly.

Original issue reported on code.google.com by aca...@gmail.com on 30 Jan 2010 at 1:16

GoogleCodeExporter commented 8 years ago
This is usually due to something else being broken in the config file, like the
plugin library to link to is not detected. Please provide the full configure 
output.

Original comment by kdeko...@gmail.com on 31 Jan 2010 at 4:30

GoogleCodeExporter commented 8 years ago

Original comment by kdeko...@gmail.com on 24 Feb 2010 at 3:50