FLTK logo

Re: fltk-1.1.8-utf

FLTK matrix user chat room
(using Element browser app)   FLTK gitter user chat room   GitHub FLTK Project   FLTK News RSS Feed  
  FLTK Apps      FLTK Library      Forums      Links     Login 
 All Forums  |  Back to fltk.general  ]
 
Previous Message ]New Message | Reply ]Next Message ]

Re: fltk-1.1.8-utf Greg Ercolano Oct 17, 2007  
 
Alexey Parshin wrote:
> === installing xutf8 ===
> Installing libfltk_xutf8.a in /usr/local/lib...
> make[1]: execvp: /usr/local/lib: Permission denied
> make[1]: execvp: ../lib/libfltk_xutf8.a: Permission denied


	Looks like the Makefile macros "MKDIR" and "CP" are not defined.
	Workaround is to add:

MKDIR=mkdir
CP=cp
	..into ./makeinclude e.g.

# programs we use...
HTMLDOC         =
INSTALL         = /usr/bin/install -c
LN              = ln -s
NROFF           = /usr/bin/nroff
RM              = rm -f
RMDIR           = rm -rf
MKDIR           = mkdir		<-- ADD THIS
CP              = cp		<-- ADD THIS
SHELL           = /bin/sh
STRIP           = strip

	..and these will be picked up by the xutf8/Makefile, which is
	where the build commands are failing.

	I guess the /real/ fixes need to be worked into the
	configure/makeinclude.in so they can be defined based on the platform.
Direct Link to Message ]
 
     
Previous Message ]New Message | Reply ]Next Message ]
 
 

Comments are owned by the poster. All other content is copyright 1998-2024 by Bill Spitzak and others. This project is hosted by The FLTK Team. Please report site problems to 'erco@seriss.com'.