ソースを参照

Revert "Fix script removal (#310)"

This reverts commit 4904fcf51f.
tags/v3.1
Luke Smith 5年前
コミット
15941b43e7
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: 4C50B54A911F6252
1個のファイルの変更2行の追加3行の削除
  1. +2
    -3
      Makefile

+ 2
- 3
Makefile ファイルの表示

@@ -26,9 +26,8 @@ install:
cp -f mw.1 $(DESTDIR)$(MANPREFIX)/man1/mw.1

uninstall:
for scriptPath in bin/*; do \
scriptFile=$$(basename $$scriptPath); \
rm -f $(DESTDIR)$(PREFIX)/bin/$$scriptFile; \
for script in bin/*; do \
rm -f $(DESTDIR)$(PREFIX)/bin/$$script; \
done
rm -rf $(DESTDIR)$(PREFIX)/share/mutt-wizard
rm -f $(DESTDIR)$(MANPREFIX)/man1/mw.1


読み込み中…
キャンセル
保存