1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
Description: Don't install examples files from Makefile
Forwarded: no
Author: Daniel Echeverry <epsilon77@gmail.com>
Last-Update: 2017-10-31
--- a/Makefile
+++ b/Makefile
@@ -73,10 +73,10 @@
sed "s!PREFIX!$(PREFIX)!g; s!VERSION!$(version)!g" sxiv.1 \
>$(DESTDIR)$(MANPREFIX)/man1/sxiv.1
chmod 644 $(DESTDIR)$(MANPREFIX)/man1/sxiv.1
- @echo "INSTALL share/sxiv/"
- mkdir -p $(DESTDIR)$(PREFIX)/share/sxiv/exec
- cp exec/* $(DESTDIR)$(PREFIX)/share/sxiv/exec/
- chmod 755 $(DESTDIR)$(PREFIX)/share/sxiv/exec/*
+ #@echo "INSTALL share/sxiv/"
+ #mkdir -p $(DESTDIR)$(PREFIX)/share/sxiv/exec
+ #cp exec/* $(DESTDIR)$(PREFIX)/share/sxiv/exec/
+ #chmod 755 $(DESTDIR)$(PREFIX)/share/sxiv/exec/*
$(MAKE) -C icon/ install
uninstall:
|