diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2015-03-23 18:20:42 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2015-03-23 18:20:42 +0200 |
commit | eed0e7d9f627ee1efd41517f44fd4907164684f1 (patch) | |
tree | 88bee342233c5d6ae6f080a1a61e0d4db765d6e7 | |
parent | 5222fb9226b52d4eed28d4bc23edd6de97d4f8fb (diff) | |
download | meson-eed0e7d9f627ee1efd41517f44fd4907164684f1.zip meson-eed0e7d9f627ee1efd41517f44fd4907164684f1.tar.gz meson-eed0e7d9f627ee1efd41517f44fd4907164684f1.tar.bz2 |
Moved rpm macros to a subdirectory to reduce clutter.
-rw-r--r-- | data/macros.meson (renamed from macros.meson) | 0 | ||||
-rwxr-xr-x | install_meson.py | 4 |
2 files changed, 2 insertions, 2 deletions
diff --git a/macros.meson b/data/macros.meson index 42ad949..42ad949 100644 --- a/macros.meson +++ b/data/macros.meson diff --git a/install_meson.py b/install_meson.py index 2c13046..baea7cf 100755 --- a/install_meson.py +++ b/install_meson.py @@ -111,5 +111,5 @@ if os.path.exists('/usr/bin/rpm'): print('Installing RPM macros to %s.' % rpmmacros_dir) outfilename = os.path.join(rpmmacros_dir, 'macros.meson') os.makedirs(rpmmacros_dir, exist_ok=True) - shutil.copyfile('macros.meson', outfilename) - shutil.copystat('macros.meson', outfilename) + shutil.copyfile('data/macros.meson', outfilename) + shutil.copystat('data/macros.meson', outfilename) |