diff options
author | Eric Andersen <andersen@codepoet.org> | 2005-06-24 08:48:06 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2005-06-24 08:48:06 +0000 |
commit | 93e6e0735ad5fba5a20bc52290f42d3e7c632d5b (patch) | |
tree | 6b6e46709fbf2319d7b6819f2423c40b0a9d698c /target | |
parent | 369864cf105bf541f4e42643d6e5647ecea20379 (diff) | |
download | buildroot-novena-93e6e0735ad5fba5a20bc52290f42d3e7c632d5b.tar.gz buildroot-novena-93e6e0735ad5fba5a20bc52290f42d3e7c632d5b.zip |
The '-r' option has gone away
Diffstat (limited to 'target')
-rw-r--r-- | target/squashfs/squashfsroot.mk | 4 | ||||
-rw-r--r-- | target/tar/tarroot.mk | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/target/squashfs/squashfsroot.mk b/target/squashfs/squashfsroot.mk index 09b08066f..4fe2f2d4b 100644 --- a/target/squashfs/squashfsroot.mk +++ b/target/squashfs/squashfsroot.mk @@ -51,8 +51,8 @@ squashfsroot: squashfs host-fakeroot makedevs -i $(STAGING_DIR)/fakeroot.env \ -s $(STAGING_DIR)/fakeroot.env -- \ $(STAGING_DIR)/bin/makedevs \ - -r $(TARGET_DIR) \ - -d target/generic/device_table.txt + -d target/generic/device_table.txt \ + $(TARGET_DIR) # Use fakeroot to fake out mksquashfs per the previous fakery $(STAGING_DIR)/usr/bin/fakeroot \ -i $(STAGING_DIR)/fakeroot.env \ diff --git a/target/tar/tarroot.mk b/target/tar/tarroot.mk index d58198f70..2dffa2c4e 100644 --- a/target/tar/tarroot.mk +++ b/target/tar/tarroot.mk @@ -23,8 +23,8 @@ tarroot: host-fakeroot makedevs -i $(STAGING_DIR)/fakeroot.env \ -s $(STAGING_DIR)/fakeroot.env -- \ $(STAGING_DIR)/bin/makedevs \ - -r $(TARGET_DIR) \ - -d target/generic/device_table.txt + -d target/generic/device_table.txt \ + $(TARGET_DIR) # Use fakeroot to fake out mksquashfs per the previous fakery $(STAGING_DIR)/usr/bin/fakeroot \ -i $(STAGING_DIR)/fakeroot.env \ |