Changeset e565c649


Ignore:
Timestamp:
Nov 17, 2011, 2:30:49 AM (12 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
Children:
b70c6f1, c77df5c
Parents:
653ac08
Message:

wscript: ask the user to run 'make distclean' before running waf

File:
1 edited

Legend:

Unmodified
Added
Removed
  • wscript

    r653ac08 re565c649  
    2222LIB_VERSION = '.'.join \
    2323        ([str(x) for x in [LIBAUBIO_LT_CUR, LIBAUBIO_LT_REV, LIBAUBIO_LT_AGE]])
     24
     25import os.path, sys
     26if os.path.exists('src/config.h') or os.path.exists('Makefile'):
     27    print "Please run 'make distclean' using waf"
     28    sys.exit(1)
     29
    2430top = '.'
    2531out = 'build'
Note: See TracChangeset for help on using the changeset viewer.