Blame view

buildroot/buildroot-2016.08.1/package/autofs/autofs.mk 1.19 KB
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
  ################################################################################
  #
  # autofs
  #
  ################################################################################
  
  AUTOFS_VERSION = 5.1.2
  AUTOFS_SOURCE = autofs-$(AUTOFS_VERSION).tar.xz
  AUTOFS_SITE = $(BR2_KERNEL_MIRROR)/linux/daemons/autofs/v5
  AUTOFS_LICENSE = GPLv2+
  AUTOFS_LICENSE_FILES = COPYING COPYRIGHT
  AUTOFS_DEPENDENCIES = host-flex host-bison
  # For 0002-autofs-configure-check-for-clock_gettime-in-librt.patch and
  # 0003-configure-add-cache-variable-for-Linux-proc-filesyst.patch.
  AUTOFS_AUTORECONF = YES
  
  # autofs looks on the build machine for the path of modprobe, so tell
  # it explicitly where it will be located on the target.
  AUTOFS_CONF_ENV = \
  	ac_cv_path_KRB5_CONFIG=no \
  	ac_cv_path_MODPROBE=/sbin/modprobe \
  	ac_cv_linux_procfs=yes
  
  # instead of looking in the PATH like any reasonable package, autofs
  # configure looks only in an hardcoded search path for host tools,
  # which we have to override with --with-path.
  AUTOFS_CONF_OPTS = \
  	--disable-mount-locking \
  	--enable-ignore-busy \
  	--without-openldap \
  	--without-sasl \
  	--with-path="$(BR_PATH)" \
  	--with-hesiod=no
  
  AUTOFS_MAKE_ENV = DONTSTRIP=1
  
  $(eval $(autotools-package))