mirror of
https://github.com/php/php-src.git
synced 2024-11-25 02:44:58 +08:00
82b73fd1e3
Fixes also a weird ln (symlink) hack for phpdbg
11 lines
201 B
Bash
Executable File
11 lines
201 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $Id$
|
|
|
|
dir=$1; shift
|
|
for stubfile in $dir/*/config0.m4 $dir/*/config.m4 $dir/*/config9.m4; do
|
|
echo "config_m4_src=$stubfile
|
|
config_m4_dir=`dirname $stubfile`
|
|
sinclude($stubfile)"
|
|
done
|