GNU Stow 충돌 처리

GNU Stow 충돌 처리

권장되는 접근 방식은 무엇입니까?GNU 스토우갈등?

축소를 시도했는데 readline-6.2다음과 같은 경고가 표시되었습니다.

> stow readline-6.2
Loading defaults from /home/josh/.stowrc
WARNING! stowing readline-6.2 would cause conflicts:
  * existing target is stowed to a different package: share/info/dir =>  
../../../stow_dir/stow_2.2.0_canonical_paths/share/info/dir
All operations aborted.

패키지와의 충돌은 stow_2.2.0_canonical_paths다음과 같습니다.패키지 디렉토리for stow(스토리지를 부팅했기 때문입니다).

갈등 목표에는 다음이 포함됩니다.

> cat ~/local/share/info/dir 
This is the file .../info/dir, which contains the
topmost node of the Info hierarchy, called (dir)Top.
The first time you invoke Info you start off looking at this node.

File: dir,      Node: Top       This is the top of the INFO tree

  This (the Directory node) gives a menu of major topics.
  Typing "q" exits, "?" lists all Info commands, "d" returns here,
  "h" gives a primer for first-timers,
  "mEmacs<Return>" visits the Emacs manual, etc.

  In Emacs, you can click mouse button 2 on a menu item or cross reference
  to select it.

* Menu:

System administration
* Stow: (stow).                 GNU Stow.

이 충돌을 해결하기 위해 권장되는 방법은 무엇입니까?

답변1

dir파일은 자동으로 생성/확장되며 install-info사용 가능한 문서에 대한 정보를 포함합니다.texinfo문서화 시스템.

간단히 파일을 삭제할 수 있습니다. 해당 시스템을 사용하고 싶다면 다른 이전 시스템과 info병합해 볼 수 있습니다 . dir또는 디렉토리의 모든 파일을 install-info.install-info --info-dir=$PWD time.info.gzshare/infostow

또 다른 옵션은 다음으로 전환하는 것입니다.xstow.xstow.ini

[exec]
match = dir # GNU info index file
exec = merge-info %t %s -o %t
exec-unstow = merge-info -u %t %s -o %t

답변2

GNU autotools 소프트웨어를 사용 --infodir하면 .--prefix./configure

stow나는 정보 문서를 전혀 읽지 않는다는 사실을 깨닫기 전까지는 모든 정보 문서에 대해 별도의 디렉토리를 갖고 있었습니다 .

답변3

ing 후 ing 전에 파일을 삭제할 수 있습니다 dir. 그런 다음 로드한 후 병합 정보 파일을 원본으로 호출하면 이것이 가장 깨끗한 솔루션이라고 생각합니다.make installstowinstall-infodir

관련 정보