Skip to content
GitLab
Projects Groups Topics Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
  • Sign in
  • P Pacman
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Graph
    • Compare revisions
    • Locked files
  • Issues 24
    • Issues 24
    • List
    • Boards
    • Service Desk
    • Milestones
    • Iterations
  • Merge requests 20
    • Merge requests 20
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Artifacts
    • Schedules
    • Test cases
  • Deployments
    • Deployments
    • Releases
  • Packages and registries
    • Packages and registries
    • Model experiments
  • Wiki
    • Wiki
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar

Admin message

Due to an influx of spam, we have had to temporarily disable account registrations. Please write an email to accountsupport@archlinux.org, with your desired username, if you want to get access. Sorry for the inconvenience.

  • Pacman
  • Pacman
  • Repository
  • pacman
  • scripts
  • libmakepkg
  • util
  • pkgbuild.sh.in
Find file Blame History Permalink
  • Dave Reisner's avatar
    makepkg: fix initialization when extracting arrays · a92a3607
    Dave Reisner authored Jun 09, 2018 and Allan McRae's avatar Allan McRae committed Jun 18, 2018
    Assuming that everything is a string leads to code which is effectively:
    
      a=
      a+=('bar')
    
    This creates an array with 2 elements instead of one. Using proper array
    initialization fixes this.
    
    https://lists.archlinux.org/pipermail/pacman-dev/2018-June/022591.html
    
    
    Signed-off-by: default avatarAllan McRae <allan@archlinux.org>
    a92a3607