OpenWrt Git依賴報錯

2022-07-15 13:09:12 字數 1787 閱讀 5118

在ubuntu中搭建openwrt編譯環境時,安裝完了需要的軟體之後,我們執行命令檢查依賴是否滿足,

make defconfig
有時會出現以下警告:

ihid@ubuntu:~/chaos_calmer$ make defconfig

checking 'working-make'... ok.

checking 'case-sensitive-fs'... ok.

checking 'gcc'... ok.

checking 'working-gcc'... ok.

checking 'g++'... ok.

checking 'working-g++'... ok.

checking 'ncurses'... ok.

checking 'zlib'... ok.

checking 'libssl'... ok.

checking 'tar'... ok.

checking 'find'... ok.

checking 'bash'... ok.

checking 'patch'... ok.

checking 'diff'... ok.

checking 'cp'... ok.

checking 'seq'... ok.

checking 'awk'... ok.

checking 'grep'... ok.

checking 'getopt'... ok.

checking 'stat'... ok.

checking 'md5sum'... ok.

checking 'unzip'... ok.

checking 'bzip2'... ok.

checking 'wget'... ok.

checking 'perl'... ok.

checking 'python'... ok.

checking 'svn'... ok.

checking 'git'... failed.

checking 'file'... ok.

checking 'openssl'... ok.

checking 'ldconfig-stub'... ok.

build dependency: please install git (git-core) >= 1.6.5

/home/ihid/chaos_calmer/include/prereq.mk:12: recipe for target 'prereq' failed

prerequisite check failed. use force=1 to override.

/home/ihid/chaos_calmer/include/toplevel.mk:140: recipe for target 'staging_dir/host/.prereq-build' failed

make: *** [staging_dir/host/.prereq-build] error 1

明明我們已經安裝了git,卻顯示我們未安裝,只是openwrt裡面prereq-build.mk的乙個bug,我們可以通過打patch的方法來修復它。

將檔案複製到/home/ihid/chaos_calmer/include路徑下

在當前路徑下執行命令patch < git-version-check-fix.patch

回到chaos_calmer主目錄,再次檢查依賴,發現沒,沒有問題了。

linux安裝vim報錯 依賴關係

終端輸入 vim 依賴 vim runtime i386 2 7.4.000 1ubuntu2 但無法安裝它 依賴 libacl1 i386 2.2.51 8 但是它將不會被安裝 依賴 libc6 i386 2.15 但是它將不會被安裝 依賴 libgpm2 i386 1.20.4 但是它將不會被安...

git轉殖專案安裝依賴報錯

報錯 unexpected end of json input file c users administrator desktop 報錯不要驚慌,讓我們重新安裝一下就好了。1.首先 執行一下命令清理快取 cnpm cache clean force 2.其次 當出現如下提示說明你清理成功了 輸入執...

Async失效及Spring迴圈依賴報錯問題分析

今日寫 發現了 async註解的方法放在 service的類中,不能非同步執行。於是排查找了下原因。我是直接在類中定義了乙個非同步方法。然後直接在該類中的其他方法呼叫。跟spring註冊bean的過程有很大關係,首先呼叫這個方法如果不是靜態類的,肯定是有個隱式物件去呼叫。在這個類中 命名為a,例項物...