Skip to content
This repository has been archived by the owner on Jul 15, 2020. It is now read-only.

Commit

Permalink
Fix wmiirc problems in recent commits.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kris Maglione committed Oct 13, 2010
1 parent 50062c2 commit 42280d2
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion alternative_wmiircs/python/wmiirc
@@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env @PYTHON@
import os, sys import os, sys
path = [] path = []
for p in os.environ.get("WMII_CONFPATH", "").split(':'): for p in os.environ.get("WMII_CONFPATH", "").split(':'):
Expand Down
4 changes: 2 additions & 2 deletions cmd/wmii.sh.sh
Expand Up @@ -96,8 +96,8 @@ wi_events() {
eval=""; [ "$1" = -e ] && eval=1 && shift eval=""; [ "$1" = -e ] && eval=1 && shift
_wi_events="$(_wi_text "$@") _wi_events="$(_wi_text "$@")
$_wi_events" $_wi_events"
# -n "$eval" ] && echo "$_wi_events" | awk "$(_wi_script)" >&2 # -n "$eval" ] && printf %s "$_wi_events" | awk "$(_wi_script)" >&2
[ -n "$eval" ] && eval "$(echo "$_wi_events" | awk "$(_wi_script)")" [ -n "$eval" ] && eval "$(printf %s "$_wi_events" | awk "$(_wi_script)")"
} }


wi_events <<'!' wi_events <<'!'
Expand Down
2 changes: 1 addition & 1 deletion mk/common.mk
Expand Up @@ -15,7 +15,7 @@ simpleinstall:
$(INSTALL) -b 0644 $$f $(DIR) $$f; \ $(INSTALL) -b 0644 $$f $(DIR) $$f; \
done done
for f in $(EXECS); do \ for f in $(EXECS); do \
$(INSTALL) -b 0755 $$f $(DIR) $$f; \ $(INSTALL) 0755 $$f $(DIR) $$f; \
done done


simpleuninstall: simpleuninstall:
Expand Down
13 changes: 7 additions & 6 deletions mk/wmii.mk
Expand Up @@ -24,16 +24,17 @@ CFLAGS += '-DVERSION=\"$(VERSION)\"' '-DCOPYRIGHT=\"$(COPYRIGHT)\"' \
'-DLOCALCONF=\"$(LOCALCONF)\"' '-DGLOBALCONF=\"$(GLOBALCONF)\"' \ '-DLOCALCONF=\"$(LOCALCONF)\"' '-DGLOBALCONF=\"$(GLOBALCONF)\"' \
-DIXP_NEEDAPI=129 -DIXP_NEEDAPI=129


FILTER = sed "s|@CONFPREFIX@|$(ETC)|g; \ FILTER = sed "s|@ALTDOC@|$(DOC)/alternative_wmiircs|g; \
s|@GLOBALCONF@|$(GLOBALCONF)|g; \ s|@BINSH@|$(BINSH)|g; \
s|@LOCALCONF@|$(LOCALCONF)|g; \
s|@CONFDIR@|$(CONFDIR)|g; \ s|@CONFDIR@|$(CONFDIR)|g; \
s|@CONFPREFIX@|$(ETC)|g; \
s|@DOCDIR@|$(DOC)|g; \ s|@DOCDIR@|$(DOC)|g; \
s|@ALTDOC@|$(DOC)/alternative_wmiircs|g; \
s|@EXAMPLES@|$(DOC)/examples|g; \ s|@EXAMPLES@|$(DOC)/examples|g; \
s|@VERSION@|$(VERSION)|g; \ s|@GLOBALCONF@|$(GLOBALCONF)|g; \
s|@LIBDIR@|$(LIBDIR)|g; \ s|@LIBDIR@|$(LIBDIR)|g; \
s|@BINSH@|$(BINSH)|g; \ s|@LOCALCONF@|$(LOCALCONF)|g; \
s|@PYTHON@|$(PYTHON)|g; \
s|@TERMINAL@|$(TERMINAL)|g; \ s|@TERMINAL@|$(TERMINAL)|g; \
s|@VERSION@|$(VERSION)|g; \
/^@@/d;" /^@@/d;"


0 comments on commit 42280d2

Please sign in to comment.