diff options
author | Doug Kearns <dougkearns@gmail.com> | 2007-08-17 14:59:26 +0000 |
---|---|---|
committer | Doug Kearns <dougkearns@gmail.com> | 2007-08-17 14:59:26 +0000 |
commit | 4fdddd4bc00b7d43c1abdbe8be2d03aa858703b2 (patch) | |
tree | 6f4501f5a79acd3fb6523a8340703cc9a07ffed9 /Makefile | |
parent | 00f6ced602e21dae7c2c60ee05f2722e15cdf1e6 (diff) | |
download | pentadactyl-4fdddd4bc00b7d43c1abdbe8be2d03aa858703b2.tar.gz |
find the correct FIREFOX_DEFAULT extensions directory path when run on Cygwin
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -40,6 +40,9 @@ SED = sed ifeq (${OS},Darwin) FIREFOX_DEFAULT = $(wildcard ${HOME}/Library/Application\ Support/Firefox/Profiles/*default) +else ifeq ($(findstring CYGWIN,${OS}),CYGWIN) +HOME = $(shell cygpath -sm "${USERPROFILE}") +FIREFOX_DEFAULT = $(wildcard ${HOME}/Application\ Data/Mozilla/Firefox/Profiles/*default) else FIREFOX_DEFAULT = $(wildcard ${HOME}/.mozilla/firefox/*.default) endif |