Skip to content
Snippets Groups Projects
  1. Jul 05, 2022
  2. Oct 22, 2021
  3. Jan 02, 2021
  4. Aug 21, 2020
  5. Jun 15, 2020
  6. Nov 21, 2019
  7. Oct 22, 2019
  8. Oct 24, 2018
  9. Jul 23, 2018
  10. Dec 14, 2016
  11. Oct 06, 2016
    • Peter Maydell's avatar
      rules.mak: quiet-command: Split command name and args to print · 0bdb12c7
      Peter Maydell authored
      
      The quiet-command make rule currently takes two arguments:
      the command and arguments to run, and a string to print if
      the V flag is not set (ie we are not being verbose).
      By convention, the string printed is of the form
      "  NAME   some args". Unfortunately to get nicely lined up
      output all the strings have to agree about what column the
      arguments should start in, which means that if we add a
      new quiet-command usage which wants a slightly longer CMD
      name then we either put up with misalignment or change
      every quiet-command string.
      
      Split the quiet-mode string into two, the "NAME" and
      the "same args" part, and use printf(1) to format the
      string automatically. This means we only need to change
      one place if we want to support a longer maximum name.
      
      In particular, we can now print 7-character names lined
      up properly (they are needed for the OSX "SETTOOL" invocation).
      
      Change all the uses of quiet-command to the new syntax.
      (Any which are missed or inadvertently reintroduced
      via later merges will result in slightly misformatted
      quiet output rather than disaster.)
      
      A few places in the pc-bios/ makefiles are updated to use
      "BUILD", "SIGN" and "STRIP" rather than "Building",
      "Signing" and "Stripping" for consistency and to keep them
      below 7 characters. Module .mo links now print "LD" rather
      than the nonstandard "LD -r".
      
      Signed-off-by: default avatarPeter Maydell <peter.maydell@linaro.org>
      Reviewed-by: default avatarEric Blake <eblake@redhat.com>
      Message-id: 1475598441-27908-1-git-send-email-peter.maydell@linaro.org
      0bdb12c7
  12. Jul 01, 2016
  13. Jun 07, 2016
  14. Apr 19, 2016
  15. Dec 10, 2015
  16. Sep 11, 2015
  17. Sep 26, 2014
  18. Aug 24, 2014
    • Stefan Weil's avatar
      po: Fix Makefile rules for in-tree builds without configuration · bcc55f32
      Stefan Weil authored
      
      Adding 'update' to the phony targets fixes this error:
      
      $ LANG=C make -C po update
      make: Entering directory `/qemu/po'
        LINK  update
      /qemu/po/de_DE.po: file not recognized: File format not recognized
      collect2: error: ld returned 1 exit status
      make: *** [update] Error 1
      make: Leaving directory `/qemu/po'
      
      Some other phony targets (build, install) were also added, and the
      existing .PHONY statement was moved to a more prominent position at
      the beginning of the Makefile.
      
      The patch also fixes a 2nd bug. The default target should be 'all',
      but instead 'modules' (from rules.mak) was the default. Fix this by
      adding 'all' as a target before any include statement.
      
      Signed-off-by: default avatarStefan Weil <sw@weilnetz.de>
      Signed-off-by: default avatarMichael Tokarev <mjt@tls.msk.ru>
      bcc55f32
  19. Aug 08, 2014
  20. Jul 29, 2014
  21. Jul 28, 2014
  22. Apr 28, 2014
  23. Aug 07, 2013
  24. Jul 23, 2013
  25. Jun 03, 2013
  26. May 08, 2013
  27. Apr 23, 2013
  28. Apr 03, 2013
  29. Apr 02, 2013
  30. Feb 22, 2013
Loading