ports/deskutils/devd-notifier/files/patch-config.mk
Pawel Pekala eeb269e869 devd-notifer - a simple daemon notifying the user about devd(8) events
with libnotify

devd-notifier parses all devd(8) messages from /var/run/devd.pipe  with
a  configurable regular expression and notifies the user about creating
and destroying of device nodes.

WWW: https://github.com/funglaub/devd-notifier

PR:		ports/166572
Submitted by:	Florian Unglaub <f.unglaub@googlemail.com>
2012-05-11 21:01:57 +00:00

12 lines
349 B
Makefile

--- config.mk.orig 2012-05-10 00:23:31.000000000 +0200
+++ config.mk 2012-05-10 00:23:55.000000000 +0200
@@ -11,7 +11,7 @@
INCS = `pkg-config --cflags libnotify`
LIBS = `pkg-config --libs libnotify`
-CFLAGS += -std=c99 -pedantic -Wall -Os ${INCS}
-LDFLAGS = -g ${LIBS}
+CFLAGS += -std=c99 -pedantic -Wall ${INCS}
+LDFLAGS += ${LIBS}
CC? = cc