whitespace cleanup
This commit is contained in:
parent
3a3e1387ac
commit
a29b7958cf
2
Makefile
2
Makefile
|
@ -132,7 +132,7 @@ docs: $(MANPAGES) $(MANPAGES_HTML)
|
||||||
|
|
||||||
install: $(BINS) docs
|
install: $(BINS) docs
|
||||||
@install -d "$(DESTDIR)$(BINDIR)" "$(DESTDIR)$(MANDIR)" "$(DESTDIR)$(APPDIR)"
|
@install -d "$(DESTDIR)$(BINDIR)" "$(DESTDIR)$(MANDIR)" "$(DESTDIR)$(APPDIR)"
|
||||||
@install -m755 $(BINS) "$(DESTDIR)$(BINDIR)"/
|
@install -m755 $(BINS) "$(DESTDIR)$(BINDIR)"/
|
||||||
@install -m644 $(MANPAGES) "$(DESTDIR)$(MANDIR)"/
|
@install -m644 $(MANPAGES) "$(DESTDIR)$(MANDIR)"/
|
||||||
@install -m644 compton.desktop "$(DESTDIR)$(APPDIR)"/
|
@install -m644 compton.desktop "$(DESTDIR)$(APPDIR)"/
|
||||||
ifneq "$(DOCDIR)" ""
|
ifneq "$(DOCDIR)" ""
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
# === Verify `compton --dbus` status ===
|
# === Verify `compton --dbus` status ===
|
||||||
|
|
||||||
if [ -z "`dbus-send --session --dest=org.freedesktop.DBus --type=method_call --print-reply /org/freedesktop/DBus org.freedesktop.DBus.ListNames | grep compton`" ]; then
|
if [ -z "`dbus-send --session --dest=org.freedesktop.DBus --type=method_call --print-reply /org/freedesktop/DBus org.freedesktop.DBus.ListNames | grep compton`" ]; then
|
||||||
echo "compton DBus interface unavailable"
|
echo "compton DBus interface unavailable"
|
||||||
|
|
|
@ -44,7 +44,7 @@ glx_check_err_(session_t *ps, const char *func, int line) {
|
||||||
if (!ps->glx_context) return;
|
if (!ps->glx_context) return;
|
||||||
|
|
||||||
GLenum err = GL_NO_ERROR;
|
GLenum err = GL_NO_ERROR;
|
||||||
|
|
||||||
while (GL_NO_ERROR != (err = glGetError())) {
|
while (GL_NO_ERROR != (err = glGetError())) {
|
||||||
print_timestamp(ps);
|
print_timestamp(ps);
|
||||||
printf("%s():%d: GLX error ", func, line);
|
printf("%s():%d: GLX error ", func, line);
|
||||||
|
|
Loading…
Reference in New Issue