summaryrefslogblamecommitdiffstats
path: root/tools/config-gen
blob: 72cefc9bc7f203df45af0f983136e2af39856480 (plain) (tree)
1
2
3
4
5
6
         



                                                 
                              



















                                                                             

                        



                 
#!/bin/sh
#
# Copyright (C) 2011 Karel Zak <kzak@redhat.com> 
# 

test -f sys-utils/mount.c || {
	echo
	echo "You must run this script in the top-level util-linux directory"
	echo
	exit 1
}

. tools/config-gen-functions.sh

while [ -n "$1" ]; do
	opts="$opts $(ul_get_configuration tools/config-gen.d/$1.conf)"
	shift
done

opts=$(echo $opts | tr " " "\n" | sort -u)
echo "Configure options:"
for x in $opts; do
	echo "	$x"
done
if [ -n "$CFLAGS" ]; then
	echo "CFLAGS:	$CFLAGS"
	CFLAGS="$CFLAGS"
	export CFLAGS
fi

echo
./configure $opts