Don't clean out the EXTRA_DIST pixmaps if we're not building from SVN.

Otherwise "make clean" will put the code into a state where you cannot rebuild.
BP

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@17159 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Derek Atkins 2008-05-17 13:22:24 +00:00
parent 08deb71541
commit 1b01c93198

View File

@ -104,5 +104,8 @@ EXTRA_DIST = \
${gncextrasmallicon_DATA} \
${gncscalableicon_DATA}
# Only clean up if we're building from SVN
if BUILDING_FROM_SVN
clean-local:
-rm -rf 48x48 32x32 24x24 22x22 16x16 scalable
endif