9 lines
221 B
Bash
Executable File
9 lines
221 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Run this script from the root of $srcdir to touch the
|
|
# autotools generated files, so that the build procedure
|
|
# doesn't attempt to regenerate them.
|
|
|
|
cd `dirname $0`/..
|
|
touch aclocal.m4 configure Makefile.in
|