view src/configure @ 10034:0b57c032e9b0 v7.4.2289

commit https://github.com/vim/vim/commit/7683aaa5061e26d4bc52fdf40be66789e9e4fec0 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Aug 28 21:00:50 2016 +0200 patch 7.4.2289 Problem: When installing and $DESTDIR is set the icons probably won't be installed. Solution: Create the icon directories if $DESTDIR is not empty. (Danek Duvall)
author Christian Brabandt <cb@256bit.org>
date Sun, 28 Aug 2016 21:15:06 +0200
parents cd9471bd8e9e
children
line wrap: on
line source

#! /bin/sh
# run the automatically generated configure script
CONFIG_STATUS=auto/config.status \
	auto/configure "$@" --srcdir="${srcdir:-.}" --cache-file=auto/config.cache
result=$?

# Stupid autoconf 2.5x causes this file to be left behind.
if test -f configure.lineno; then rm -f configure.lineno; fi

exit $result