The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/contrib/openzfs/config/tgz.am

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 PHONY += tgz tgz-kmod tgz-utils tgz-local
    2 
    3 tgz-local:
    4         @(if test "${HAVE_ALIEN}" = "no"; then \
    5                 echo -e "\n" \
    6         "*** Required util ${ALIEN} missing.  Please install the\n" \
    7         "*** package for your distribution which provides ${ALIEN},\n" \
    8         "*** re-run configure, and try again.\n"; \
    9                 exit 1; \
   10         fi)
   11 
   12 tgz-kmod: tgz-local rpm-kmod
   13         name=${PACKAGE}; \
   14         version=${VERSION}-${RELEASE}; \
   15         arch=`$(RPM) -qp $${name}-kmod-$${version}.src.rpm --qf %{arch} | tail -1`; \
   16         pkg1=kmod-$${name}*$${version}.$${arch}.rpm; \
   17         fakeroot $(ALIEN) --scripts --to-tgz $$pkg1; \
   18         $(RM) $$pkg1
   19 
   20 tgz-utils: tgz-local rpm-utils
   21         name=${PACKAGE}; \
   22         version=${VERSION}-${RELEASE}; \
   23         arch=`$(RPM) -qp $${name}-$${version}.src.rpm --qf %{arch} | tail -1`; \
   24         pkg1=$${name}-$${version}.$${arch}.rpm; \
   25         pkg2=$${name}-devel-$${version}.$${arch}.rpm; \
   26         pkg3=$${name}-test-$${version}.$${arch}.rpm; \
   27         fakeroot $(ALIEN) --scripts --to-tgz $$pkg1 $$pkg2 $$pkg3; \
   28         $(RM) $$pkg1 $$pkg2 $$pkg3
   29 
   30 tgz: tgz-kmod tgz-utils

Cache object: ef831e1a7704a7295e44eb82101c6b56


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.