Menu

#1846 Scintilla: ARFLAGS variable in gtk/makefile.

Bug
closed-fixed
5
2016-09-05
2016-07-04
No

gtk/makefile uses AR make variable but does not use ARFLAGS variable:

$(COMPLIB): ...
        $(AR) rc $@ $^
        $(RANLIB) $@

It would be better to use standard ARFLAGS make variable:

$(COMPLIB): ...
        $(AR) $(ARFLAGS) $@ $^
        $(RANLIB) $@

GNU makefile by default sets ARFLAGS to rv. If you do not want verbosity, ARFLAGS may be defined in the beginning of makefile:

ARFLAGS = rc
1 Attachments

Discussion

  • Neil Hodgson

    Neil Hodgson - 2016-08-11
    • labels: --> scintilla, gtk
    • status: open --> open-fixed
    • assigned_to: Neil Hodgson
     
  • Neil Hodgson

    Neil Hodgson - 2016-08-11

    Committed as [767be4].

     

    Related

    Commit: [767be4]

  • Neil Hodgson

    Neil Hodgson - 2016-09-05
    • status: open-fixed --> closed-fixed
     

Log in to post a comment.

MongoDB Logo MongoDB