First Last Prev Next    No search results available      Search page      Enter new bug
Bug#: 99562
Alias:
Product:
Component:
Status: RESOLVED
Resolution: FIXED
Assigned To: Gentoo Games <games@gentoo.org>
Hardware:
OS:
Version:
Priority:
Severity:
Reporter: NightTwix <nighttwix@gmx.de>
Add CC:
CC:
Remove selected CCs
URL:
Summary:
Status Whiteboard:
Keywords:

Filename Description Type Creator Created Size Actions
Create a New Attachment (proposed patch, testcase, etc.) View All

Bug 99562 depends on: Show dependency tree
Bug 99562 blocks:
Votes: 0    Show votes for this bug    Vote for this bug

Additional Comments: (this is where you put emerge --info)


Not eligible to see or edit group visibility for this bug.






View Bug Activity   |   Format For Printing   |   XML   |   Clone This Bug


Description:   Opened: 2005-07-19 12:04 0000
im not able to start this game

$ mtp-target-bin-client 
/usr/games/bin/mtp-target-bin-client: line 2: cd: ./client: No such file or 
directory
/usr/games/bin/mtp-target-bin-client: line 4: /opt/mtp-target-bin/client: is a 
directory
/usr/games/bin/mtp-target-bin-client: line 4: exec: /opt/mtp-target-bin/client: 
cannot execute: Success


$ cat /usr/games/bin/mtp-target-bin-client 
#!/bin/sh
cd "./client"
export LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:../lib"
exec /opt/mtp-target-bin/client "$@"

Right path to execuable should be /opt/mtp-target-bin/client/client
and path to lib is: /opt/mtp-target-bin/lib/

same goes for mtp-target-bin-server

Reproducible: Always
Steps to Reproduce:
1. emerge mtp-target-bin
2. start mtp-target-bin-server or mtp-target-bin-client
3.

------- Comment #1 From UncleOwen 2005-07-19 15:35:18 0000 -------
Looks to me, like someone mixed up the order of the arguments to
games_make_wrapper.
games_make_wrapper ${PN}-client "${GAMES_PREFIX_OPT}/${PN}/client" ./client
../lib
games_make_wrapper ${PN}-server "${GAMES_PREFIX_OPT}/${PN}/server" ./server
../lib
should be
games_make_wrapper ${PN}-client ./client "${GAMES_PREFIX_OPT}/${PN}/client"
../lib
games_make_wrapper ${PN}-server ./server "${GAMES_PREFIX_OPT}/${PN}/server"
../lib
shouldn't it?

------- Comment #2 From Chris Gianelloni (RETIRED) 2005-07-19 15:43:23 0000 -------
You are correct...

Fixed in CVS...

First Last Prev Next    No search results available      Search page      Enter new bug