author | kergoth <kergoth> | 2002-11-05 21:21:53 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2002-11-05 21:21:53 (UTC) |
commit | 1e44fcf55d2e1724e06b8f2eeaeeb12b0fe13177 (patch) (unidiff) | |
tree | 0fece190462c6a352749a2c43e5c94a9f1bab36f | |
parent | 29d8b412c02963b58482a9e58e23becb8f18fa0d (diff) | |
download | opie-1e44fcf55d2e1724e06b8f2eeaeeb12b0fe13177.zip opie-1e44fcf55d2e1724e06b8f2eeaeeb12b0fe13177.tar.gz opie-1e44fcf55d2e1724e06b8f2eeaeeb12b0fe13177.tar.bz2 |
use ln -sf, not ln -s
-rw-r--r-- | Rules.make | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -27,14 +27,14 @@ $(TOPDIR)/.depends.cfgs: | |||
27 | $(TOPDIR)/stamp-headers : | 27 | $(TOPDIR)/stamp-headers : |
28 | mkdir -p $(TOPDIR)/include/qpe $(TOPDIR)/include/qtopia \ | 28 | mkdir -p $(TOPDIR)/include/qpe $(TOPDIR)/include/qtopia \ |
29 | $(TOPDIR)/include/opie $(TOPDIR)/include/qtopia/private | 29 | $(TOPDIR)/include/opie $(TOPDIR)/include/qtopia/private |
30 | ( cd include/qpe && rm -f *.h; ln -s ../../library/*.h .; ln -s ../../library/backend/*.h .; rm -f *_p.h; ) | 30 | ( cd include/qpe && rm -f *.h; ln -sf ../../library/*.h .; ln -sf ../../library/backend/*.h .; rm -f *_p.h; ) |
31 | ( cd include/qtopia && rm -f *.h; ln -s ../../library/*.h .; ) | 31 | ( cd include/qtopia && rm -f *.h; ln -sf ../../library/*.h .; ) |
32 | ( cd include/qtopia/private && rm -f *.h; ln -s ../../../library/backend/*.h .; ) | 32 | ( cd include/qtopia/private && rm -f *.h; ln -sf ../../../library/backend/*.h .; ) |
33 | ( cd include/opie && rm -f *.h; ln -s ../../libopie/*.h .; rm -f *_p.h; ) | 33 | ( cd include/opie && rm -f *.h; ln -sf ../../libopie/*.h .; rm -f *_p.h; ) |
34 | ( cd include/opie && ln -s ../../libsql/*.h .; ) | 34 | ( cd include/opie && ln -sf ../../libsql/*.h .; ) |
35 | ( cd include/opie && ln -s ../../libopie/pim/*.h .; ) | 35 | ( cd include/opie && ln -sf ../../libopie/pim/*.h .; ) |
36 | ( cd include/opie; for generatedHeader in `cd ../../libopie; ls *.ui | sed -e "s,\.ui,\.h,g"`; do \ | 36 | ( cd include/opie; for generatedHeader in `cd ../../libopie; ls *.ui | sed -e "s,\.ui,\.h,g"`; do \ |
37 | ln -s ../../libopie/$$generatedHeader $$generatedHeader; done ) | 37 | ln -sf ../../libopie/$$generatedHeader $$generatedHeader; done ) |
38 | touch $@ | 38 | touch $@ |
39 | 39 | ||
40 | 40 | ||