diff options
author | Daniel Baumann <daniel@debian.org> | 2007-09-24 08:47:42 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2007-09-24 08:47:42 +0200 |
commit | a03cfd36b80e6a37234440bfcf9ba2d3e33811b7 (patch) | |
tree | 6d9d0c85e7141243e0b40adcd847d1cc7c479448 /debian/default | |
parent | 9377334c155c23018b1442ed640fe248505285a3 (diff) | |
download | vyos-live-build-a03cfd36b80e6a37234440bfcf9ba2d3e33811b7.tar.gz vyos-live-build-a03cfd36b80e6a37234440bfcf9ba2d3e33811b7.zip |
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 0ca9a272c..d92aae457 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/" |