diff options
author | Louis Taylor <kragniz@gmail.com> | 2012-04-16 02:05:43 +0100 |
---|---|---|
committer | Louis Taylor <kragniz@gmail.com> | 2012-04-16 02:05:43 +0100 |
commit | d6c3c913887af7d31bac65b20fe5d00dc0baaf15 (patch) | |
tree | 68e25e6420735a76da3000932bfea3747174b655 /Makefile | |
parent | 0f9bbe32645268caa143ef382b8b6165e7dfd65f (diff) | |
download | ponysay-d6c3c913887af7d31bac65b20fe5d00dc0baaf15.tar.gz ponysay-d6c3c913887af7d31bac65b20fe5d00dc0baaf15.tar.bz2 ponysay-d6c3c913887af7d31bac65b20fe5d00dc0baaf15.zip |
Allow ponysay to be reinstalled.
Force the linking of ponythink to ensure the makefile doesn't error if the
link already exists.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2,7 +2,7 @@ install: mkdir -p $(DESTDIR)/usr/share/ponies cp -r ponies/*.pony $(DESTDIR)/usr/share/ponies/ install -Dm755 ponysay $(DESTDIR)/usr/bin/ponysay - ln -s ponysay $(DESTDIR)/usr/bin/ponythink + ln -sf ponysay $(DESTDIR)/usr/bin/ponythink uninstall: rm -fr $(DESTDIR)/usr/share/ponies |