Skip to content
Snippets Groups Projects
  1. Aug 21, 2020
  2. Jun 15, 2020
  3. Nov 21, 2019
  4. Oct 22, 2019
  5. Oct 24, 2018
  6. Jul 23, 2018
  7. Dec 14, 2016
  8. 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
  9. Jul 01, 2016
  10. Jun 07, 2016
  11. Apr 19, 2016
  12. Dec 10, 2015
  13. Sep 11, 2015
  14. Sep 26, 2014
  15. 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
  16. Aug 08, 2014
  17. Jul 29, 2014
  18. Jul 28, 2014
  19. Apr 28, 2014
  20. Aug 07, 2013
  21. Jul 23, 2013
  22. Jun 03, 2013
  23. May 08, 2013
  24. Apr 23, 2013
  25. Apr 03, 2013
  26. Apr 02, 2013
  27. Feb 22, 2013
  28. Feb 21, 2013
    • Anthony Liguori's avatar
      gtk: add translation support (v5) · 834574ea
      Anthony Liguori authored
      
      This includes a de_DE translation from Kevin Wolf and an it translation from
      Paolo Bonzini.
      
      Cc: Paolo Bonzini <pbonzini@redhat.com>
      Cc: Kevin Wolf <kwolf@redhat.com>
      Cc: Stefan Hajnoczi <stefanha@redhat.com>
      Signed-off-by: default avatarAnthony Liguori <aliguori@us.ibm.com>
      Message-id: 1361367806-4599-8-git-send-email-aliguori@us.ibm.com
      834574ea
Loading