From 9461334b3ce610f86b2a3e1aa13aa0cf24de6365 Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Wed, 13 Jan 2021 04:29:54 -0500 Subject: ppt-mkpkgs, ppt-rmpkgs: Fix ppt-version loading Fixes: /usr/bin/ppt-mkpkgs: .: line 3: ppt-version: not found --- diff --git a/changelog b/changelog index 15199cc..1d22ca9 100644 --- a/changelog +++ b/changelog @@ -5,6 +5,8 @@ platconf-pkg-tools (3.0.1) trunk * ppt-mkpkgs now always generates valid substitution variable names. Previously, package names like "linux-libre-4.19" caused invalid substvar names to be generated. + * ppt-mkpkgs and ppt-rmpkgs now correctly detect the interface + version. -- Patrick McDermott Sun, 08 Nov 2020 13:08:46 -0500 diff --git a/src/ppt-mkpkgs b/src/ppt-mkpkgs index 2b0d437..4aba148 100644 --- a/src/ppt-mkpkgs +++ b/src/ppt-mkpkgs @@ -1,4 +1,4 @@ #!/bin/sh -. ppt-version +. ./ppt-version . /usr/share/platconf-pkg-tools/${ppt_version}/ppt-mkpkgs diff --git a/src/ppt-rmpkgs b/src/ppt-rmpkgs index 2f5cf71..e766792 100644 --- a/src/ppt-rmpkgs +++ b/src/ppt-rmpkgs @@ -1,4 +1,4 @@ #!/bin/sh -. ppt-version +. ./ppt-version . /usr/share/platconf-pkg-tools/${ppt_version}/ppt-rmpkgs -- cgit v0.9.1