diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-11-14 09:44:08 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-11-14 09:44:08 +0000 |
commit | 5343886e9e825afa831adcf81c2dfd7cfa66a1a3 (patch) | |
tree | 58780370838c267cb83f6c3eb753265dc26da1d2 /make/bzip2.mk | |
parent | e1a124005c2a32584cc9382ecc0e86629387ff2d (diff) | |
download | buildroot-novena-5343886e9e825afa831adcf81c2dfd7cfa66a1a3.tar.gz buildroot-novena-5343886e9e825afa831adcf81c2dfd7cfa66a1a3.zip |
Fix a perl to sed conversion error
Diffstat (limited to 'make/bzip2.mk')
-rw-r--r-- | make/bzip2.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make/bzip2.mk b/make/bzip2.mk index 60b6ceb32..967360e19 100644 --- a/make/bzip2.mk +++ b/make/bzip2.mk @@ -21,7 +21,7 @@ bzip2-source: $(DL_DIR)/$(BZIP2_SOURCE) $(BZIP2_DIR)/.unpacked: $(DL_DIR)/$(BZIP2_SOURCE) $(BZIP2_CAT) $(DL_DIR)/$(BZIP2_SOURCE) | tar -C $(BUILD_DIR) -xvf - - sed -ie "s,ln \\$$\(,ln -sf \\$$\(,g" $(BZIP2_DIR)/Makefile + sed -ie "s,ln \$$(,ln -sf \$$(,g" $(BZIP2_DIR)/Makefile sed -ie "s,ln -s (lib.*),ln -sf \$$1 ; ln -sf libbz2.so.1.0.2 libbz2.so,g" \ $(BZIP2_DIR)/Makefile-libbz2_so touch $(BZIP2_DIR)/.unpacked |