From c8ff275cd84db6748d95cb1932875aa693230824 Mon Sep 17 00:00:00 2001 From: Michael Aldridge Date: Thu, 8 Oct 2015 01:42:32 -0500 Subject: [PATCH] Update lsb_release Certain tools expect the output of lsb_release to be in a specific format. This commit alters the output of lsb_release to use this format such that those tools can correctly identify the system as Void Linux. --- srcpkgs/base-files/files/lsb_release | 5 ++++- srcpkgs/base-files/template | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/srcpkgs/base-files/files/lsb_release b/srcpkgs/base-files/files/lsb_release index 8d9c1e5d1b..85db0855f1 100644 --- a/srcpkgs/base-files/files/lsb_release +++ b/srcpkgs/base-files/files/lsb_release @@ -1,3 +1,6 @@ #!/bin/sh -echo Void + +printf "Distributor ID:\tVoid\n" +printf "Description:\tVoid Linux\n" +printf "Release:\trolling\n" exit 0 diff --git a/srcpkgs/base-files/template b/srcpkgs/base-files/template index 8b152a3dc1..1623f23779 100644 --- a/srcpkgs/base-files/template +++ b/srcpkgs/base-files/template @@ -1,6 +1,6 @@ # Template file for 'base-files' pkgname=base-files -version=0.132 +version=0.133 revision=1 bootstrap=yes depends="xbps-triggers"