mirror of
https://github.com/openbsd/ports.git
synced 2026-06-17 23:13:55 +02:00
19 lines
411 B
Plaintext
19 lines
411 B
Plaintext
Index: scripts/phpize.in
|
|
--- scripts/phpize.in.orig
|
|
+++ scripts/phpize.in
|
|
@@ -1,11 +1,11 @@
|
|
#!/bin/sh
|
|
|
|
# Variable declaration
|
|
-prefix='@prefix@'
|
|
+prefix=@PEAR_INSTALLDIR@
|
|
datarootdir='@datarootdir@'
|
|
exec_prefix="`eval echo @exec_prefix@`"
|
|
-phpdir="`eval echo @libdir@`/build"
|
|
-includedir="`eval echo @includedir@`/php"
|
|
+phpdir="$prefix/build"
|
|
+includedir="$prefix/include"
|
|
builddir="`pwd`"
|
|
SED="@SED@"
|
|
|