Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 49318 - Wrong BASH sintax in net-dialup/ppp-2.4.2-r?.ebuild
Summary: Wrong BASH sintax in net-dialup/ppp-2.4.2-r?.ebuild
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High normal (vote)
Assignee: Gentoo Dialup Developers
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-04-28 13:58 UTC by Luca Santarelli
Modified: 2004-04-30 05:11 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 Luca Santarelli 2004-04-28 13:58:11 UTC
Both ppp-2.4.2-r1.ebuild and 2.4.2-r2.ebuild files have a wrong BASH sintax in line 137. The if requires two additional square brackets around the tests.

This is the wrong line:
if [ ! -e ${ROOT}dev/.devfsd || ! -e ${ROOT}dev/.udev ]

This is how it should look:
if [ ! -e ${ROOT}dev/.devfsd ] || [ ! -e ${ROOT}dev/.udev ]


Reproducible: Always
Steps to Reproduce:
1.
2.
3.
Comment 1 Heinrich Wendel (RETIRED) gentoo-dev 2004-04-30 05:11:55 UTC
fixed :)