Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 338678 - wrong include_path set in dev-lang/php-5.3.3-r1
Summary: wrong include_path set in dev-lang/php-5.3.3-r1
Status: RESOLVED FIXED
Alias: None
Product: Gentoo/Alt
Classification: Unclassified
Component: Prefix Support (show other bugs)
Hardware: All OS X
: High normal (vote)
Assignee: Gentoo Prefix
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-09-25 16:09 UTC by nietonfir
Modified: 2010-09-25 20:24 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description nietonfir 2010-09-25 16:09:43 UTC
src_install-v1.eblit found in bug no 338040 sets a wrong include_path in all php.ini files because of a stupid typo (mea culpa!) in line 106. The fix is rather trivial, there's a useless $ in front of the second include path:

-	sed -e 's|^;include_path = ".:/php/includes".*|include_path = ".:'"${EPREFIX}"'/usr/share/php'${PHP_MV}':$'"${EPREFIX}"'/usr/share/php"|' -i "${phpinisrc}"
+	sed -e 's|^;include_path = ".:/php/includes".*|include_path = ".:'"${EPREFIX}"'/usr/share/php'${PHP_MV}':'"${EPREFIX}"'/usr/share/php"|' -i "${phpinisrc}"

sry ;)
Comment 1 Fabian Groffen gentoo-dev 2010-09-25 20:24:05 UTC
fixed, thanks