summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbuilddebianpackage4
-rw-r--r--packaging/default_files/control2
2 files changed, 5 insertions, 1 deletions
diff --git a/builddebianpackage b/builddebianpackage
index c3b71a2a..bf7696c6 100755
--- a/builddebianpackage
+++ b/builddebianpackage
@@ -99,6 +99,10 @@ if make install; then
# For every link set the corresponding target with stripped prefix
ln -sf ${link#*_SEPARATOR_} ${link%_SEPARATOR_*}
done;
+ #Correct location references in mkdxsinitrd:
+ for file in `grep -l --recursive /tmp/ld$$ /tmp/ld$$/* 2>/dev/null`; do
+ sed -i 's#/tmp/ld[0-9]*##' $file
+ done;
#Create the package
dpkg-deb --build /tmp/ld$$ > /dev/null
diff --git a/packaging/default_files/control b/packaging/default_files/control
index 92c91a1d..43ddb6ad 100644
--- a/packaging/default_files/control
+++ b/packaging/default_files/control
@@ -7,4 +7,4 @@ Depends: bash (>= 3.0), coreutils (>= 5.2.1), sed (>= 4.1.4), mawk (>= 1.3.3), f
Maintainer: Felix Endres <felix-ld4@256bit.org>
Description: Diskless Linux Server Setup
This project provides a convenient way to setup a server for stateless
-(possibly diskless) fat clients.
+ (possibly diskless) fat clients.