mirror of
https://github.com/php/php-src.git
synced 2025-08-17 14:38:49 +02:00
8 lines
143 B
Bash
Executable file
8 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
|