diff options
author | Dave Reisner <dreisner@archlinux.org> | 2012-01-22 01:44:09 +0100 |
---|---|---|
committer | Dave Reisner <dreisner@archlinux.org> | 2012-01-28 21:38:50 +0100 |
commit | 828c5f7c54c1205feb2c9928646dec24a790d734 (patch) | |
tree | 310f35b45bf8cb255e6647a0f9f5d0c4aa07c712 /install/keymap | |
parent | 15988f0f8b8232b010179dc834ca4dd851a14f00 (diff) | |
download | mkinitcpio-828c5f7c54c1205feb2c9928646dec24a790d734.tar.gz mkinitcpio-828c5f7c54c1205feb2c9928646dec24a790d734.tar.xz |
avoid absolute paths in add_binary calls
This makes us more resilient against path changes -- add_binary is smart
enough to resolve the path for us.
Signed-off-by: Dave Reisner <dreisner@archlinux.org>
Diffstat (limited to 'install/keymap')
-rw-r--r-- | install/keymap | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install/keymap b/install/keymap index 1c53c4a..51bb1a2 100644 --- a/install/keymap +++ b/install/keymap @@ -10,7 +10,7 @@ build() { touch "$BUILDROOT/keymap.utf8" uc=-u fi - /bin/loadkeys -q $uc $KEYMAP -b > "$BUILDROOT/keymap.bin" + loadkeys -q $uc $KEYMAP -b > "$BUILDROOT/keymap.bin" fi ) |