Hi,

I've just installed fltk2 r6916 without a previous version of fltk2
installed, and there's a missing $(DESTDIR) in fluid/Makefile that means
the installation fails -- it can't find fltk2-config, because it's not
there yet. Patch attached.

Thanks,

-- 
Adam Sampson <[email protected]>                         <http://offog.org/>
Add a missing DESTDIR.

diff -x config.log -x config.status -ru tmp/fltk-2.0.x-r6916/fluid/Makefile 
work/fltk-2.0.x-r6916/fluid/Makefile
--- tmp/fltk-2.0.x-r6916/fluid/Makefile 2008-08-05 00:03:58.000000000 +0100
+++ work/fltk-2.0.x-r6916/fluid/Makefile        2009-10-21 00:10:25.000000000 
+0100
@@ -134,7 +134,7 @@
        -$(MKDIR) $(DESTDIR)$(bindir)
        $(CP) $(FLUID) $(DESTDIR)$(bindir)/fluid2$(EXEEXT)
        $(STRIP) $(DESTDIR)$(bindir)/fluid2$(EXEEXT)
-       $(bindir)/fltk2-config --post $(DESTDIR)$(bindir)/fluid2$(EXEEXT)
+       $(DESTDIR)$(bindir)/fltk2-config --post 
$(DESTDIR)$(bindir)/fluid2$(EXEEXT)
        $(CHMOD) 755 $(DESTDIR)$(bindir)/fluid2$(EXEEXT)
 
 
_______________________________________________
fltk-bugs mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk-bugs

Reply via email to