[Olsr-cvs] olsrd-current/make Makefile.linux,1.8,1.9
Bernd Petrovitsch
(spam-protected)
Tue Jan 30 17:50:22 CET 2007
Update of /cvsroot/olsrd/olsrd-current/make
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv28850/make
Modified Files:
Makefile.linux
Log Message:
* fixed buggy shell command
Index: Makefile.linux
===================================================================
RCS file: /cvsroot/olsrd/olsrd-current/make/Makefile.linux,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** Makefile.linux 12 Nov 2006 21:54:53 -0000 1.8
--- Makefile.linux 30 Jan 2007 16:50:20 -0000 1.9
***************
*** 5,9 ****
ARCH := $(shell uname -m)
DESTDIR ?=
! LIBDIR = $(DESTDIR)$(shell [ "$(ARCH)" = "x86_64" && -d "/usr/lib64" ] && echo "/usr/lib64" || echo "/usr/lib")
SRCS += $(wildcard src/linux/*.c) $(wildcard src/unix/*.c)
--- 5,9 ----
ARCH := $(shell uname -m)
DESTDIR ?=
! LIBDIR = $(DESTDIR)$(shell if [ "$(ARCH)" = "x86_64" -a -d "/usr/lib64" ]; then echo "/usr/lib64"; else echo "/usr/lib"; fi)
SRCS += $(wildcard src/linux/*.c) $(wildcard src/unix/*.c)
More information about the Olsr-cvs
mailing list