diff options
author | Jeremy Huddleston <jeremyhu@apple.com> | 2010-04-01 11:51:15 -0700 |
---|---|---|
committer | Jeremy Huddleston <jeremyhu@apple.com> | 2010-04-01 12:14:45 -0700 |
commit | 437902ce978cde9a0e1aa260f12dc232a8501c42 (patch) | |
tree | ed840b19d9b25318e2ddf8f52506cd22c4e9b36d /progs | |
parent | 16f568a1830ea17da82683f97e016cdc0aae0c65 (diff) |
xdemos: Fix a build failure for non-autoconf configs
Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
Diffstat (limited to 'progs')
-rw-r--r-- | progs/xdemos/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/progs/xdemos/Makefile b/progs/xdemos/Makefile index e87d55d011..d5c627aa34 100644 --- a/progs/xdemos/Makefile +++ b/progs/xdemos/Makefile @@ -11,7 +11,7 @@ LIB_DEP = $(TOP)/$(LIB_DIR)/$(GL_LIB_NAME) # Add X11 and pthread libs to satisfy GNU gold. APP_LIB_DEPS += -lX11 -lpthread -LIBS = -L$(TOP)/$(LIB_DIR) -l$(GL_LIB) -L$(libdir) $(APP_LIB_DEPS) +LIBS = -L$(TOP)/$(LIB_DIR) -l$(GL_LIB) -L$(INSTALL_LIB_DIR) $(APP_LIB_DEPS) PROGS = \ corender \ |