mirror of
https://github.com/pygos/build.git
synced 2024-11-05 11:37:10 +01:00
2235d8e6a0
Upgrade the following packages to newer releases: - bash - busybox - coreutils - ethtool - iproute2 - libbsd - nano - ncurses - sqlite3 Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
31 lines
675 B
Diff
31 lines
675 B
Diff
--- a/Makefile
|
|
+++ b/Makefile
|
|
@@ -12,20 +12,20 @@ ifeq ($(VERBOSE),0)
|
|
MAKEFLAGS += --no-print-directory
|
|
endif
|
|
|
|
-PREFIX?=/usr
|
|
-LIBDIR?=$(PREFIX)/lib
|
|
-SBINDIR?=/sbin
|
|
-CONFDIR?=/etc/iproute2
|
|
-DATADIR?=$(PREFIX)/share
|
|
-HDRDIR?=$(PREFIX)/include/iproute2
|
|
+PREFIX=
|
|
+LIBDIR=/lib
|
|
+SBINDIR=/bin
|
|
+CONFDIR=/etc/iproute2
|
|
+DATADIR=/share
|
|
+HDRDIR=/include/iproute2
|
|
DOCDIR?=$(DATADIR)/doc/iproute2
|
|
MANDIR?=$(DATADIR)/man
|
|
ARPDDIR?=/var/lib/arpd
|
|
-KERNEL_INCLUDE?=/usr/include
|
|
+KERNEL_INCLUDE=$(SYSROOT)/include
|
|
BASH_COMPDIR?=$(DATADIR)/bash-completion/completions
|
|
|
|
# Path to db_185.h include
|
|
-DBM_INCLUDE:=$(DESTDIR)/usr/include
|
|
+DBM_INCLUDE:=$(SYSROOT)/include
|
|
|
|
SHARED_LIBS = y
|
|
|