diff options
author | Daniel Laird <danieljlaird@hotmail.com> | 2009-01-12 12:40:48 +0000 |
---|---|---|
committer | Daniel Laird <danieljlaird@hotmail.com> | 2009-01-12 12:40:48 +0000 |
commit | c3430358a31f7d78672d2ef801db4d9b711a69ea (patch) | |
tree | f91bd949382d83a52e09fcb54574a5ec14412ac1 /package/liberation | |
parent | 94b61800c7d84a7dba634c4bdd3e48b27c990c4e (diff) | |
download | buildroot-novena-c3430358a31f7d78672d2ef801db4d9b711a69ea.tar.gz buildroot-novena-c3430358a31f7d78672d2ef801db4d9b711a69ea.zip |
package/liberation/liberation.mk: Correct the makefile to what it should have been
Correct the makefile so that it works and is what I originally planned to add.
Signed-off-by: Daniel Laird <daniel.j.laird@nxp.com>
Diffstat (limited to 'package/liberation')
-rw-r--r-- | package/liberation/liberation.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/liberation/liberation.mk b/package/liberation/liberation.mk index b6a7a1af0..165078fb8 100644 --- a/package/liberation/liberation.mk +++ b/package/liberation/liberation.mk @@ -18,12 +18,12 @@ $(LIBERATION_DIR)/.unpacked: $(DL_DIR)/$(LIBERATION_SOURCE) $(LIBERATION_CAT) $(DL_DIR)/$(LIBERATION_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) - touch $(LIBERATION_DIR)/.unpacked -$(STAGING_DIR)/usr/share/fonts/.ttf: $(LIBERATION_DIR)/.unpacked +$(STAGING_DIR)/usr/share/fonts/LiberationMono-Bold.ttf: $(LIBERATION_DIR)/.unpacked -mkdir -p $(STAGING_DIR)/usr/share/fonts/liberation $(INSTALL) -m0644 $(LIBERATION_DIR)/*.ttf $(STAGING_DIR)/usr/share/fonts/liberation/ touch -c $(STAGING_DIR)/usr/share/fonts/.ttf -$(TARGET_DIR)/usr/share/fonts/LiberationMono-Bold.ttf: $(STAGING_DIR)/usr/share/fonts/.ttf +$(TARGET_DIR)/usr/share/fonts/LiberationMono-Bold.ttf: $(STAGING_DIR)/usr/share/fonts/LiberationMono-Bold.ttf -mkdir -p $(TARGET_DIR)/usr/share/fonts/liberation $(INSTALL) -m0644 $(LIBERATION_DIR)/*.ttf $(TARGET_DIR)/usr/share/fonts/liberation/ touch -c $(TARGET_DIR)/usr/share/fonts/.ttf |