lantw44
lantw44
請問能提供選項來避免安裝像是 AUTHORS COPYING ChangeLog 這類的檔案嗎?在打包 RPM 時通常會用 %doc 和 %license 這類的 macro 來將這些常見的文件檔放到發行版指定的地方,如果 Makefile 中就已經安裝這些檔案,可能會造成檔案出現在意料之外的地方,例如以下的狀況: ``` RPM 建置錯誤: 錯誤:找到已安裝 (但未打包) 的檔案: /usr/share/doc/lilyterm-gtk3/COPYING 找到已安裝 (但未打包) 的檔案: /usr/share/doc/lilyterm-gtk3/COPYING ERROR: Exception(lilyterm-gtk3-0.9.9.5-0.4.20150208gitf600c08.fc22.src.rpm) Config(fedora-23-x86_64) 3...
在打包 RPM 時,我們通常會希望 Makefile 中不要執行 strip,因為 RPM 會自動將 debug symbol 和原始碼打包成名稱結尾是 -debuginfo 的 package。如果在 Makefile 中就執行 strip,會因為產生空白的 -debuginfo package 而造成錯誤: https://copr-be.cloud.fedoraproject.org/results/lantw44/lilyterm-gtk3/fedora-rawhide-x86_64/lilyterm-gtk3-0.9.9.5-0.4.20150208gitf600c08.fc22/build.log.gz 目前我的解決方法是用 `make STRIP=:`,不過這看起來不太好,請問能新增 `configure` 選項來提供這項功能嗎?
這是我測試時使用的設定檔,桌面環境是 GNOME 3.15.2 ``` [main] font_name = Terminus (TTF) 10.5 column = 80 row = 25 transparent_window = 1 window_opacity = 0.200 window_opacity_inactive = 0.200 transparent_background = 0 background_saturation =...
我在 LilyTerm 裡面使用的字型是安裝在 ~/.fonts 下的。但有時候使用到一半,可能因為安裝更新,結果 LilyTerm 就把字型變回 Sans,而且從「改變字型」選單中找不到原本的字型,必須把所有 LilyTerm 視窗關掉再開才能恢復。 LilyTerm 版本是 0.9.9.2
使用 lilyterm -x 開啟新分頁時,當分頁內的程式更改標題時,LilyTerm 上的標題沒有跟著改變。 測試方法: 1. lilyterm -x bash 2. 在新開的分頁執行 printf "\033]0;ABC\007" 3. 可是新分頁的標題並沒有變成 ABC
whereis 有可能只會搜尋系統預設的路徑,而不會搜尋 PATH。這樣如果需要的程式不在系統預設路徑內,就有可能發生問題。例如:如果想要使用 /home/lantw44/.local/bin/pkg-config,而且把 /home/lantw44/.local/bin 設定在 PATH 的最前面,可是 whereis 傳回的還是 /usr/bin/pkg-config。
I can build finalterm with little change on FreeBSD. Is there any plan to support FreeBSD? Here is my build log: http://fpaste.org/87273/95371105/ The problem is that finalterm just exits when...
When the first key I press is not 'q', finalterm will segfault or hang my gnome-shell. Finalterm always starts bashdb, is it possible to disable this behavior and start regular...
GNU libc already marks isinff and isnanf functions as obsolete. They have been replaced by isinf and isnan macros defined by C99. Since we already requires C99 in this project,...
## Describe the bug If the server doesn't provide `serverInfo` in `InitializeResult`, the plugin will send an empty array instead of the `initializationOptions` set by the user when the server...