|
From: <sv...@va...> - 2005-06-24 15:20:59
|
Author: njn Date: 2005-06-24 16:20:52 +0100 (Fri, 24 Jun 2005) New Revision: 4011 Log: Another "make dist" fix from Ralf Wildenhues. Modified: trunk/configure.in Modified: trunk/configure.in =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- trunk/configure.in 2005-06-24 13:45:56 UTC (rev 4010) +++ trunk/configure.in 2005-06-24 15:20:52 UTC (rev 4011) @@ -24,6 +24,23 @@ ]) AC_SUBST(VEX_DIR) =20 +# "make distcheck" first builds a tarball, then extracts it. +# Then it creates a build directory different from the extracted sources +# (called _build), and issues +# +# ../configure $(DISTCHECK_CONFIGURE_FLAGS) +# +# and then builds, runs "make check", installs using DESTDIR, runs make +# installcheck, uninstalls, checks whether the installed base is empty +# again, then does yet another "make dist" and compares the resulting +# tarball with the one it started off with for identical content. Then = it +# tests "make distclean" for no leftover files. =20 +# +# So this line means: when doing "make dist", use the same --with-vex v= alue +# that you used when running configure to configure this tree in the fir= st +# place. +AC_SUBST([DISTCHECK_CONFIGURE_FLAGS], [--with-vex=3D$VEX_DIR]) + # Checks for programs. CFLAGS=3D"-Wno-long-long" =20 |