From 3186455599043938d765b4cc9b92af5fde7241cd Mon Sep 17 00:00:00 2001 From: grischka Date: Mon, 4 Feb 2013 16:11:17 +0100 Subject: Makefile: allow CONFIG_LDDIR=lib64 configuration --- tcc.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'tcc.h') diff --git a/tcc.h b/tcc.h index 5949ab6..b98025c 100644 --- a/tcc.h +++ b/tcc.h @@ -152,12 +152,12 @@ # define CONFIG_SYSROOT "" #endif -#ifdef CONFIG_MULTIARCHDIR -# define CONFIG_LDDIR "lib/" CONFIG_MULTIARCHDIR -#endif - #ifndef CONFIG_LDDIR -# define CONFIG_LDDIR "lib" +# ifdef CONFIG_MULTIARCHDIR +# define CONFIG_LDDIR "lib/" CONFIG_MULTIARCHDIR +# else +# define CONFIG_LDDIR "lib" +# endif #endif /* path to find crt1.o, crti.o and crtn.o */ -- cgit v1.3.1