mirror of
https://github.com/opnsense/src.git
synced 2026-02-15 16:48:36 -05:00
20 lines
306 B
Bash
Executable file
20 lines
306 B
Bash
Executable file
#!/bin/bash -norc
|
|
# (re)make the autoconf configuration files.
|
|
# Used by am-utils maintainers only!
|
|
#
|
|
# Erez Zadok <ezk@cs.columbia.edu>
|
|
#
|
|
#set -x
|
|
|
|
if [ ! -f amd/amd.c ]; then
|
|
cd ..
|
|
fi
|
|
if [ ! -f amd/amd.c ]; then
|
|
cd ..
|
|
fi
|
|
if [ ! -f amd/amd.c ]; then
|
|
echo "wrong directory!"
|
|
exit 1
|
|
fi
|
|
|
|
cd m4 && make $*
|