Wine

從原始碼安裝wine,無需root權限

  • October 30, 2013

我正在嘗試wine在沒有 root 訪問權限的情況下安裝在我的電腦上。我知道要更改前綴使用automake --prefix=$HOME/Self_Programs,但後來我收到此錯誤消息:

[tomas@wizard wine-1.1.27]$ automake --prefix=$HOME/Self_Programs`
automake: unrecognized option '--prefix=/home/tomas/Self_Programs'.`
automake: Try '/usr/bin/automake --help' for more information.`

configure(這個在源碼中使用命令前後都試過了)

我真的被困在這裡:有人可以幫助我做錯什麼嗎?

使用 GNU 自動工具建構系統,您可以將--prefix選項傳遞給配置腳本。以下應該適用於編譯葡萄酒:

./configure --prefix=$HOME/Self_Programs
make
make install

引用自:https://unix.stackexchange.com/questions/98251