diff options
author | Helmut Grohne <helmut@subdivi.de> | 2012-04-15 13:55:41 +0200 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2012-04-15 13:55:41 +0200 |
commit | 0c168b03f86476985f6dcc752e11766460d52281 (patch) | |
tree | 1e5b74d6ba049f70db318961443c9aca497a3a56 | |
parent | 48a9eb4449b5a591671a42b39722dff16e62e813 (diff) | |
download | tcvt-0c168b03f86476985f6dcc752e11766460d52281.tar.gz |
Makefile: don't fail to install twice
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -8,7 +8,7 @@ install:build install -m755 tcvt.py "${DESTDIR}${BINDIR}/tcvt" install -m755 optcvt.sh.transformed "${DESTDIR}${BINDIR}/optcvt" install -m644 tcvt.1.gz "${DESTDIR}${MANDIR}/man1/tcvt.1.gz" - ln -s tcvt.1.gz "${DESTDIR}${MANDIR}/man1/optcvt.1.gz" + ln -sf tcvt.1.gz "${DESTDIR}${MANDIR}/man1/optcvt.1.gz" build:optcvt.sh.transformed tcvt.1.gz clean: rm -f optcvt.sh.transformed tcvt.1.gz |