Skip to content

Commit

Permalink
configure.ac: NOTIFY_CFLAGS is not set
Browse files Browse the repository at this point in the history
This sort of assignment, +=, works in makefiles, but not in shell scripts.
  • Loading branch information
nick87720z authored and Maato committed Feb 28, 2023
1 parent 8c7aa53 commit b034dd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.ac
Expand Up @@ -86,7 +86,7 @@ fi
if test "x${notify}" = xyes; then
# Check for libnotify
PKG_CHECK_MODULES([NOTIFY], [libnotify >= 0.5.0])
NOTIFY_CFLAGS+=" -DCOMPILEWITH_NOTIFY"
NOTIFY_CFLAGS="${NOTIFY_CFLAGS} -DCOMPILEWITH_NOTIFY"
AC_SUBST(NOTIFY_CFLAGS)
AC_SUBST(NOTIFY_LIBS)
fi
Expand Down

0 comments on commit b034dd1

Please sign in to comment.