mirror of
https://github.com/typeable/wai.git
synced 2025-01-07 14:51:40 +03:00
2362c7fe79
git-subtree-dir: wai-handler-fastcgi git-subtree-mainline:e1388d9821
git-subtree-split:d8afaeaae5
10 lines
259 B
Bash
10 lines
259 B
Bash
#!/bin/sh
|
|
#
|
|
|
|
# subst standard header path variables
|
|
if test -n "$CPPFLAGS" ; then
|
|
echo "Found CPPFLAGS in environment: '$CPPFLAGS'"
|
|
sed 's,@CPPFLAGS@,'"$CPPFLAGS"',g;s,@LDFLAGS@,'"$LDFLAGS"',g' \
|
|
< fastcgi.buildinfo.in > fastcgi.buildinfo
|
|
fi
|