summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2012-06-29 22:39:17 (EDT)
committer P. J. McDermott <pjm@nac.net>2012-06-29 22:39:17 (EDT)
commit64e54d02ecbf5bf8117755467ede57e78350d195 (patch)
tree95e5d2377aa8a6ff9d3faf35f59b679a894fbaa5
parentb52e81accf1451111f0ac5a1fea928461a0d298b (diff)
Soon oh-* utils won't need package lists.
-rw-r--r--specs/source-package-format-2.0.txt14
1 files changed, 6 insertions, 8 deletions
diff --git a/specs/source-package-format-2.0.txt b/specs/source-package-format-2.0.txt
index a177897..2a21db4 100644
--- a/specs/source-package-format-2.0.txt
+++ b/specs/source-package-format-2.0.txt
@@ -527,8 +527,6 @@ Following is an example `build.in` file:
#! /usr/bin/make -f
- PKGS_ARCH = opkg libopkg.1 libopkg.1-dbg
- PKGS_INDEP = opkg-doc libopkg.1-dev
PKG_COMMON = libopkg.1
configure.stamp: configure
@@ -550,16 +548,16 @@ Following is an example `build.in` file:
binary-arch: install-arch.stamp
oh-strip -gl /usr/lib/libopkg.so.1.0.0
- oh-installfiles $(PKGS_ARCH)
+ oh-installfiles
oh-installdocs $(PKG_COMMON)
- oh-gencontrol $(PKGS_ARCH)
- oh-buildopk $(PKGS_ARCH)
+ oh-gencontrol
+ oh-buildopk
binary-indep: install-indep.stamp
- oh-installfiles $(PKGS_INDEP)
+ oh-installfiles
oh-installdocs $(PKG_COMMON)
- oh-gencontrol $(PKGS_INDEP)
- oh-buildopk $(PKGS_INDEP)
+ oh-gencontrol
+ oh-buildopk
binary: binary-arch binary-indep