X-Git-Url: https://git.whamcloud.com/?a=blobdiff_plain;f=autoMakefile.am;h=0f1424ba70b3ac7008d469a1207321f65205cbe0;hb=b8ff97611717d6f4cafd26d1e7e418fd745f5297;hp=064c317dea081ed3f5c17548604f7fb6d783a940;hpb=8d7f2674337e4f22e200e08ca1ac001ec24b4496;p=fs%2Flustre-release.git diff --git a/autoMakefile.am b/autoMakefile.am index 064c317..0f1424b 100644 --- a/autoMakefile.am +++ b/autoMakefile.am @@ -1,14 +1,14 @@ SUBDIRS := @LDISKFS_SUBDIR@ \ . \ @LUSTREIOKIT_SUBDIR@ \ - @LIBCFS_SUBDIR@ \ + libcfs \ @SNMP_SUBDIR@ \ lnet \ lustre DIST_SUBDIRS := ldiskfs \ lustre-iokit \ - @LIBCFS_SUBDIR@ \ + libcfs \ @SNMP_DIST_SUBDIR@ \ lnet \ lustre \ @@ -74,7 +74,7 @@ all-am: modules modules: undef.h ldiskfs-sources $(MAKE) LDFLAGS= CC="$(CC)" -C $(LINUX_OBJ) \ -f $(PWD)/build/Makefile LUSTRE_LINUX_CONFIG=$(LINUX_CONFIG) \ - LINUXINCLUDE='-I$$(srctree)/arch/$$(SRCARCH)/include -Iarch/$$(SRCARCH)/include/generated -Iinclude $$(if $$(KBUILD_SRC),-Iinclude2 -I$$(srctree)/include) -I$$(srctree)/arch/$$(SRCARCH)/include/uapi -Iarch/$$(SRCARCH)/include/generated/uapi -I$$(srctree)/include/uapi -Iinclude/generated/uapi -include $(CONFIG_INCLUDE)' \ + LINUXINCLUDE='-I$$(srctree)/arch/$$(SRCARCH)/include -Iarch/$$(SRCARCH)/include/generated -Iinclude $$(if $$(KBUILD_SRC)$$(building_out_of_srctree),-Iinclude2 -I$$(srctree)/include) -I$$(srctree)/arch/$$(SRCARCH)/include/uapi -Iarch/$$(SRCARCH)/include/generated/uapi -I$$(srctree)/include/uapi -Iinclude/generated/uapi -include $(CONFIG_INCLUDE)' \ $(MODULE_TARGET)=$(PWD) -o tmp_include_depends -o scripts -o \ include/config/MARKER $@ endif # LINUX @@ -260,9 +260,21 @@ debs: undef.h fi; \ if test "x@ENABLE_GSS@" = "xyes"; then \ export DEB_BUILD_PROFILES="$${DEB_BUILD_PROFILES} gss"; \ + debiantmp=$$(mktemp -t -d debbuild-$$USER-XXXXXXXX) ; \ + cp debian/control $$debiantmp/control.bkp ; \ + cp debian/control.main $$debiantmp/control.main.bkp ; \ + cp debian/control.modules.in $$debiantmp/control.modules.in.bkp ; \ + sed -i "s+^\(Build-Depends: .*\)$$+\1, libkrb5-dev, libssl-dev+" debian/control.main ; \ + awk 'BEGIN{change=0} $$1 == "Package:" {if (($$2 == "lustre-client-utils") || ($$2 == "lustre-server-utils")) change=1; else change=0; fi } {if (($$1 == "Depends:") && change) print $$0 ", libgssapi-krb5-2, libkrb5-3, libssl1.1"; else print; fi}' debian/control.main > $$debiantmp/control.main && mv $$debiantmp/control.main debian/control.main ; \ + sed -i "s+^\(Build-Depends: .*\)$$+\1, libkrb5-dev, libssl-dev+" debian/control.modules.in ; \ elif test "x@ENABLE_GSS@" = "xno"; then \ export DEB_BUILD_PROFILES="$${DEB_BUILD_PROFILES} nogss"; \ fi; \ + if test "x@ENABLE_CRYPTO@" = "xyes"; then \ + export DEB_BUILD_PROFILES="$${DEB_BUILD_PROFILES} crypto"; \ + elif test "x@ENABLE_CRYPTO@" = "xno"; then \ + export DEB_BUILD_PROFILES="$${DEB_BUILD_PROFILES} nocrypto"; \ + fi; \ if test "x@systemdsystemunitdir@" != "x"; then \ export DEB_BUILD_PROFILES="$${DEB_BUILD_PROFILES} systemd"; \ fi; \ @@ -283,9 +295,15 @@ debs: undef.h fi; \ dpkg-buildpackage -us -uc -I.git -I\*.out[0-9]\* -I\*.swp || { \ rc=$${PIPESTATUS[0]}; \ + cp $$debiantmp/control.bkp debian/control || true && \ + cp $$debiantmp/control.main.bkp debian/control.main || true && \ + cp $$debiantmp/control.modules.in.bkp debian/control.modules.in || true && \ [ $${rc} -gt 1 ] && exit $${rc}; \ exit 0; \ }; \ + cp $$debiantmp/control.bkp debian/control || true && \ + cp $$debiantmp/control.main.bkp debian/control.main || true && \ + cp $$debiantmp/control.modules.in.bkp debian/control.modules.in || true && \ export KPKG_DEST_DIR="$$(pwd)/.." && \ version=$$(sed -ne '1s/^lustre (\(.*\)).*$$/\1/p' debian/changelog) && \ rm -rf debian/tmp/modules-deb && \