From 9bb9e8d9e547922ff4f5502bd49160c901673235 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Marczykowski-G=C3=B3recki?= Date: Tue, 11 Nov 2014 01:22:26 +0100 Subject: [PATCH] Fix compile flags order (-lX11 moved to the end) --- misc/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/Makefile b/misc/Makefile index b0b18ae..945dd6f 100644 --- a/misc/Makefile +++ b/misc/Makefile @@ -10,7 +10,7 @@ all: xenstore-watch python close-window xenstore-watch: xenstore-watch.o $(CC) -o xenstore-watch xenstore-watch.o -lxenstore close-window: close-window.c - $(CC) -lX11 -o $@ $< + $(CC) -o $@ $< -lX11 python: python -m compileall . python -O -m compileall .