Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/rpm-software-management/createrepo_c.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomas Mlcoch <tmlcoch@redhat.com>2014-12-11 16:24:32 +0300
committerTomas Mlcoch <tmlcoch@redhat.com>2014-12-11 16:24:32 +0300
commit0fac9505294500994dc8565f057ce3a01ae7f377 (patch)
tree40b5ccada5ceb97f09ae6fb4aaddc7058960ef42 /CMakeLists.txt
parent2b6adfbb99f2a0d5b6e3bcfbe116df563397ec4c (diff)
deltarpms: Don't show options for delta rpms if support is not available
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index a9962a9..d7f5dc4 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -79,6 +79,8 @@ ELSE (DRPM_PATH)
FIND_LIBRARY (DRPM_LIBRARY NAMES drpm)
IF (NOT DRPM_LIBRARY)
MESSAGE("No DRPM library installed")
+ ELSE (NOT DRPM_LIBRARY)
+ MESSAGE("Using DRPM library: ${DRPM_LIBRARY}")
ENDIF (NOT DRPM_LIBRARY)
endif (DRPM_PATH)