mirror of
https://github.com/php/php-src.git
synced 2024-11-28 12:26:37 +08:00
7c2f1384d4
added RPM spec file for a future "official" RPM, work-in-progress
18 lines
323 B
Bash
Executable File
18 lines
323 B
Bash
Executable File
#!/bin/sh
|
|
|
|
outfile=$1; shift
|
|
extensions=$@
|
|
|
|
ext_libs=""
|
|
for dir in $extensions; do
|
|
archive="$dir/libphpext_$dir.a"
|
|
if test ! -r "$archive"; then
|
|
echo `basename $0`": could not open $archive" >&2
|
|
exit 1
|
|
fi
|
|
ext_libs="$ext_libs $archive"
|
|
done
|
|
|
|
(set -x; $top_srcdir/scripts/armerge $outfile $ext_libs)
|
|
exit 0
|