diff options
author | Werner Koch <[email protected]> | 2024-12-03 10:55:53 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2024-12-03 10:55:53 +0000 |
commit | 65a4bc30d99aada8e5f17711bc5a4ff242d22881 (patch) | |
tree | 56f16f044656d8361938b6df258322d83f8c3cb3 | |
parent | po: Update Portuguese Translation. (diff) | |
download | libgpg-error-65a4bc30d99aada8e5f17711bc5a4ff242d22881.tar.gz libgpg-error-65a4bc30d99aada8e5f17711bc5a4ff242d22881.zip |
Minor cleanness fix for autogen.sh
* autogen.sh (w32root): Remove double slash in case of HOME=/.
-rwxr-xr-x | autogen.sh | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -15,7 +15,7 @@ # configure it for the respective package. It is maintained as part of # GnuPG and source copied by other packages. # -# Version: 2024-11-21 +# Version: 2024-12-03 configure_ac="configure.ac" @@ -335,6 +335,7 @@ if [ "$myhost" = "w32" ]; then extraoptions="$extraoptions $w32_extraoptions" ;; esac + w32root=$(echo "$w32root" | sed s,^//,/,) info "Using $w32root as standard install directory" replace_sysroot |