From: Michael Biebl Date: Sat, 30 May 2015 01:04:55 +0000 (+0200) Subject: build-sys: Normalize paths of configure options X-Git-Tag: v226.4~1^2~327 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;ds=sidebyside;h=2f3c1f55f649c4cc6ac7d623f12bcf32b33d449c;hp=2f3c1f55f649c4cc6ac7d623f12bcf32b33d449c;p=elogind.git build-sys: Normalize paths of configure options Strip trailing slashes from options such as --with-rootprefix, so that building with rootprefix="/" results in paths like "/lib" instead of "//lib". Also handle paths such as "/usr/" gracefully. Use m4/ax_normalize_path.m4 from the autoconf-archive project, which is now included in our tree as per usual practices in using autoconf-archive macros. Tested with the following configure options: ./configure \ --with-rootprefix=/ \ --with-rootlibdir=/lib64/ \ --prefix=/usr/ \ --libdir=/lib/ \ --with-bashcompletiondir=/bash-completion/completions/ (The "prefix" and "libdir" are already automatically normalized by Autoconf, this command is testing the others.) Compared the config.log and resulting trees (in particular man pages) to confirm double slashes were not present in the latter. Also tested that a configuration using default options is not affected and that `make distcheck` still works as expected. ---