Fix solaris installation issue.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@28551 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2009-08-26 22:50:55 +00:00
parent ef011a9452
commit ccd9924369

View file

@ -47,7 +47,7 @@ before-install:: $(themedir)
# Things to do after installing
after-install::
for file in $(THEME_FILES); do \
for file in $$THEME_FILES; do \
cp -r $$file $(themedir)/$$file ; \
done
@ -56,7 +56,7 @@ after-install::
# Things to do after uninstalling
after-uninstall::
for file in $(THEME_FILES); do \
for file in $$THEME_FILES; do \
rm -f $(themedir)/$$file ; \
done