mirror of
https://github.com/php/php-src.git
synced 2024-11-24 18:34:21 +08:00
9 lines
143 B
Bash
Executable File
9 lines
143 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $Id$
|
|
|
|
dir=$1; shift
|
|
for stubfile in $dir/*/config0.m4 $dir/*/config.m4 $dir/*/config9.m4; do
|
|
echo "sinclude($stubfile)"
|
|
done
|