waitforx: fix build

--- waitforx ---
CCLD     waitforx
ld: error: unable to find library -lX11
ld: error: unable to find library -lXrandr
cc: error: linker command failed with exit code 1 (use -v to see invocation)
*** [waitforx] Error code 1
This commit is contained in:
Koichiro Iwao 2023-09-04 17:33:27 +09:00
parent a111a0fdfe
commit a978b58f11
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
pkglibexec_PROGRAMS = \
waitforx
AM_LDFLAGS = -lX11 -lXrandr
AM_LDFLAGS = $(X_LIBS) -lX11 -lXrandr
AM_CPPFLAGS = \
-I$(top_srcdir)/sesman/sesexec \