diff options
author | Daniel Baumann <daniel@debian.org> | 2007-09-24 08:47:42 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 18:22:27 +0100 |
commit | f2734daf0a9519db6b303683d3ac413a20d56e2a (patch) | |
tree | 6d9d0c85e7141243e0b40adcd847d1cc7c479448 /debian/default | |
parent | 81a76d4adc812c16be8238fedda25bd43ab3a379 (diff) | |
download | live-build-f2734daf0a9519db6b303683d3ac413a20d56e2a.zip live-build-f2734daf0a9519db6b303683d3ac413a20d56e2a.tar.gz |
Replacing backticks with POSIX expression.
Diffstat (limited to 'debian/default')
-rw-r--r-- | debian/default | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/debian/default b/debian/default index 0ca9a27..d92aae4 100644 --- a/debian/default +++ b/debian/default @@ -2,13 +2,13 @@ AUTOBUILD="disabled" -DATE="`date +%Y%m%d`" +DATE="$(date +%Y%m%d)" DESTDIR="/srv/debian-live" TEMPDIR="/srv/tmp/live-helper" OPTIONS="--binary-indices disabled" -ARCHITECTURES="`dpkg --print-architecture`" +ARCHITECTURES="$(dpkg --print-architecture)" DISTRIBUTIONS="sid" MIRROR_BOOTSTRAP="http://ftp.debian.org/debian/" MIRROR_BOOTSTRAP_SECURITY="http://security.debian.org/" |