summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Bächler <thomas@archlinux.org>2008-03-15 23:20:21 +0100
committerThomas Bächler <thomas@archlinux.org>2008-03-15 23:20:21 +0100
commitc75f6726f08f338ce000cfbbca3fd27ec8356798 (patch)
tree5f2021f466aa53a775503aee80b96e105a2de118
parentdff86cf5af941ad1478e765641f8f05722b18ae3 (diff)
downloadmkinitcpio-c75f6726f08f338ce000cfbbca3fd27ec8356798.tar.gz
mkinitcpio-c75f6726f08f338ce000cfbbca3fd27ec8356798.tar.xz
Fix syntax error introduced in one of the last commits
-rw-r--r--install/autodetect2
-rwxr-xr-xmkinitcpio4
2 files changed, 3 insertions, 3 deletions
diff --git a/install/autodetect b/install/autodetect
index 4042956..e446a07 100644
--- a/install/autodetect
+++ b/install/autodetect
@@ -2,7 +2,7 @@
install ()
{
- MODULE_FILE="$(${TMPDIR}/autodetect_modules)"
+ MODULE_FILE="${TMPDIR}/autodetect_modules"
#blegh, we'll let /tmp clean itself up
AUTODETECT="$(auto_modules -e '/scsi/' -e '/block' -e '/fusion/' \
-e '/usb/' -e '/ide/' -e '/ieee1394/' -e '/cdrom' \
diff --git a/mkinitcpio b/mkinitcpio
index 1317ffd..9a8006c 100755
--- a/mkinitcpio
+++ b/mkinitcpio
@@ -15,8 +15,8 @@
# Settings
TMPDIR="$(mktemp -d /tmp/mkinitcpio.XXXXXX)"
BASEDIR=""
-FILELIST="$(${TMPDIR}/filelist)"
-MESSAGEFILE="$(${TMPDIR}/message)"
+FILELIST="${TMPDIR}/filelist"
+MESSAGEFILE="${TMPDIR}/message"
KERNELVERSION="$(uname -r)"
FUNCTIONS="functions"
CONFIG="mkinitcpio.conf"