diff options
author | Brian Tarricone <brian@tarricone.org> | 2004-07-26 19:36:38 +0000 |
---|---|---|
committer | Brian Tarricone <brian@tarricone.org> | 2004-07-26 19:36:38 +0000 |
commit | 2bb1f629448f6740ab3161bad4536776e1bd655a (patch) | |
tree | 5943ffac67897bc62e3d57e221fb9b6ef6db6f40 /common | |
parent | c77ef739c1b1fa50d2e1253cbdb75c21acc0c3d8 (diff) | |
download | xfdesktop-2bb1f629448f6740ab3161bad4536776e1bd655a.tar.gz |
add kiosk support to xfdesktop using benny's new XfceKiosk architecture. see
xfdesktop/docs/README.kiosk for details.
(Old svn revision: 7827)
Diffstat (limited to 'common')
-rw-r--r-- | common/Makefile.in | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/common/Makefile.in b/common/Makefile.in index 8ed6a427..e5fe29e3 100644 --- a/common/Makefile.in +++ b/common/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.8.3 from Makefile.am. +# Makefile.in generated by automake 1.8.5 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, @@ -292,7 +292,7 @@ clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; for p in $$list; do \ dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ - test "$$dir" = "$$p" && dir=.; \ + test "$$dir" != "$$p" || dir=.; \ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done @@ -412,9 +412,11 @@ TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) |