[PATCH xserver] Use separate name for --with-bundle-version help variable

2016-05-12 Thread Keith Packard
The help string for --with-bundle-version can't have any shell variable expansion, so it uses an m4 variable instead. Using the same name as the shell variable causes the configure script to end up with the expanded string (1.18.99\n) instead of the variable name (DEFAULT_BUNDLE_VERSION). Using AC

Re: [PATCH xserver] Use separate name for --with-bundle-version help variable

2016-05-12 Thread Jeremy Huddleston Sequoia
I actually already had a patch for that on my branch and just hadn't gotten around to sending it, sorry: https://github.com/XQuartz/xorg-server/commit/eb7c1e7fb16338d8fc03a0bb0f9bb53eb99ee139 I ended up just getting rid of the shell variable and only using the m4 variable. I don't think w

Re: [PATCH xserver] Use separate name for --with-bundle-version help variable

2016-05-12 Thread Keith Packard
Jeremy Huddleston Sequoia writes: > I actually already had a patch for that on my branch and just hadn't gotten > around to sending it, sorry: > > > https://github.com/XQuartz/xorg-server/commit/eb7c1e7fb16338d8fc03a0bb0f9bb53eb99ee139 > > I ended up just getting rid of the shell variable a