author | kergoth <kergoth> | 2003-04-24 20:09:08 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2003-04-24 20:09:08 (UTC) |
commit | b59b200a00486bc68810317eb7f14c565604a475 (patch) (side-by-side diff) | |
tree | fd65d0fe91cc2be850b34da528ba5606af80913d | |
parent | 6bdab3a554c784efa1553485f99e92542071463e (diff) | |
download | opie-b59b200a00486bc68810317eb7f14c565604a475.zip opie-b59b200a00486bc68810317eb7f14c565604a475.tar.gz opie-b59b200a00486bc68810317eb7f14c565604a475.tar.bz2 |
Correct the etc filesubst path
-rw-r--r-- | Rules.make | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -116,17 +116,17 @@ $(TOPDIR)/scripts/subst : FORCE $(TOPDIR)/scripts/filesubst : FORCE @( \ echo 's,\$$OPIEDIR,$(prefix),g'; \ echo 's,$(OPIEDIR),$(prefix),g'; \ echo 's,\$$QTDIR,$(prefix),g'; \ echo 's,$(QTDIR),$(prefix),g'; \ echo 's,^root/,/,g'; \ - echo 's,^etc/,/etc/,g'; \ + echo 's,^etc/,$(prefix)/etc/,g'; \ echo 's,^lib/,$(prefix)/lib/,g'; \ echo 's,^bin/,$(prefix)/bin/,g'; \ echo 's,^pics/,$(prefix)/pics/,g'; \ echo 's,^sounds/,$(prefix)/sounds/,g'; \ echo 's,^plugins/,$(prefix)/plugins/,g'; \ echo 's,^apps/,$(prefix)/apps/,g'; \ ) > $@ || ( rm -f $@; exit 1 ) |