Introduction
Introduction Statistics Contact Development Disclaimer Help
Fix webext directory in Makefile - surf - surf browser, a WebKit based browser
git clone git://git.suckless.org/surf
Log
Files
Refs
README
LICENSE
---
commit 47e39851ca12749d24c66f948054c42289756ca7
parent 3321c42d36ce79ebecd8b2ea7e93ca2e5c2ff98d
Author: Quentin Rameau <[email protected]>
Date: Mon, 8 Oct 2018 14:11:24 +0200
Fix webext directory in Makefile
Diffstat:
M Makefile | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/Makefile b/Makefile
@@ -55,9 +55,9 @@ install: all
mkdir -p $(DESTDIR)$(PREFIX)/bin
cp -f surf $(DESTDIR)$(PREFIX)/bin
chmod 755 $(DESTDIR)$(PREFIX)/bin/surf
- mkdir -p $(DESTDIR)$(WEBEXTDIR)
- cp -f libsurf-webext.so $(DESTDIR)$(WEBEXTDIR)
- chmod 644 $(DESTDIR)$(PREFIX)/bin/surf
+ mkdir -p $(DESTDIR)$(LIBDIR)
+ cp -f libsurf-webext.so $(DESTDIR)$(LIBDIR)
+ chmod 644 $(DESTDIR)$(LIBDIR)/bin/libsurf-webext.so
mkdir -p $(DESTDIR)$(MANPREFIX)/man1
sed "s/VERSION/$(VERSION)/g" < surf.1 > $(DESTDIR)$(MANPREFIX)/man1/su…
chmod 644 $(DESTDIR)$(MANPREFIX)/man1/surf.1
@@ -65,8 +65,8 @@ install: all
uninstall:
rm -f $(DESTDIR)$(PREFIX)/bin/surf
rm -f $(DESTDIR)$(MANPREFIX)/man1/surf.1
- rm -f $(DESTDIR)$(WEBEXTDIR)/libsurf-webext.so
- - rmdir $(DESTDIR)$(WEBEXTDIR)
+ rm -f $(DESTDIR)$(LIBDIR)/libsurf-webext.so
+ - rmdir $(DESTDIR)$(LIBDIR)
.SUFFIXES: .so .o .c
.PHONY: all options clean-dist clean dist install uninstall
You are viewing proxied material from suckless.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.