File: configure

package info (click to toggle)
iputils 3%3A20250605-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,848 kB
  • sloc: ansic: 6,033; xml: 1,797; sh: 543; makefile: 28
file content (17 lines) | stat: -rwxr-xr-x 376 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

DIR=builddir

echo "Using './$DIR' as the directory for build output"
echo

if [ $# -ne 0 ]; then
	meson configure $DIR
	echo
	echo 'Configuration can be changed like this:'
	echo "  meson configure $DIR -Dprefix=/usr"
	echo '  More info: http://mesonbuild.com/Configuring-a-build-directory.html'
	# See also: http://mesonbuild.com/howtox.html
fi

meson setup $DIR